提交 fbdec2ef 编写于 作者: L Lukas Meller 提交者: AUTOMATIC1111

Fix prompt matrix script

上级 89f4bb3c
......@@ -176,7 +176,7 @@ def process_images(p: StableDiffusionProcessing) -> Processed:
all_prompts = p.batch_size * p.n_iter * [p.prompt]
if type(p.seed) == list:
all_seeds = int(p.seed)
all_seeds = p.seed
else:
all_seeds = [int(p.seed + x) for x in range(len(all_prompts))]
......
......@@ -51,6 +51,7 @@ class Script(scripts.Script):
def run(self, p, put_at_start):
modules.processing.fix_seed(p)
seed = p.seed
original_prompt = p.prompt[0] if type(p.prompt) == list else p.prompt
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册