diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-10 05:29:12 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-10 05:29:12 +0000 |
commit | ee8a6fa89fed10dc672678fe84430309480f1f89 (patch) | |
tree | 5f98816d6c6615cfa76c02d2fb78c2bb27d6a67b | |
parent | 26ce47eb6c86e80c61933685e63d5527bddb31b6 (diff) | |
download | stable-diffusion-webui-gfx803-ee8a6fa89fed10dc672678fe84430309480f1f89.tar.gz stable-diffusion-webui-gfx803-ee8a6fa89fed10dc672678fe84430309480f1f89.tar.bz2 stable-diffusion-webui-gfx803-ee8a6fa89fed10dc672678fe84430309480f1f89.zip |
Images in Prompt Matrix grid using different seeds. #208
-rw-r--r-- | scripts/prompt_matrix.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/prompt_matrix.py b/scripts/prompt_matrix.py index f8da0fdd..82096b0d 100644 --- a/scripts/prompt_matrix.py +++ b/scripts/prompt_matrix.py @@ -73,6 +73,7 @@ class Script(scripts.Script): print(f"Prompt matrix will create {len(all_prompts)} images using a total of {p.n_iter} batches.")
p.prompt = all_prompts
+ p.seed = [p.seed for _ in all_prompts]
p.prompt_for_display = original_prompt
processed = process_images(p)
|