diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-02-19 06:15:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 06:15:51 +0000 |
commit | d7bcc942ff91a49e1a357494d196ee5e8cc1f0a4 (patch) | |
tree | 2ff5ea289b09e6eec6639bcab399a5aa07a77de0 | |
parent | 75e03785fe1fb47c3b288105e2638ef06d81aef2 (diff) | |
parent | 6911deb2423755000ccbc2283da738512b3eec27 (diff) | |
download | stable-diffusion-webui-gfx803-d7bcc942ff91a49e1a357494d196ee5e8cc1f0a4.tar.gz stable-diffusion-webui-gfx803-d7bcc942ff91a49e1a357494d196ee5e8cc1f0a4.tar.bz2 stable-diffusion-webui-gfx803-d7bcc942ff91a49e1a357494d196ee5e8cc1f0a4.zip |
Merge pull request #7868 from space-nuko/fix-save-params-2
Fix params.txt saving for infotexts modified by process_batch
-rw-r--r-- | modules/processing.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/modules/processing.py b/modules/processing.py index e4b989d4..269a1a9f 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -580,9 +580,8 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: if shared.opts.live_previews_enable and opts.show_progress_type == "Approx NN":
sd_vae_approx.model()
- with open(os.path.join(paths.data_path, "params.txt"), "w", encoding="utf8") as file:
- processed = Processed(p, [], p.seed, "")
- file.write(processed.infotext(p, 0))
+ if not p.disable_extra_networks:
+ extra_networks.activate(p, extra_network_data)
if state.job_count == -1:
state.job_count = p.n_iter
@@ -613,6 +612,15 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: if p.scripts is not None:
p.scripts.process_batch(p, batch_number=n, prompts=prompts, seeds=seeds, subseeds=subseeds)
+ # params.txt should be saved after scripts.process_batch, since the
+ # infotext could be modified by that callback
+ # Example: a wildcard processed by process_batch sets an extra model
+ # strength, which is saved as "Model Strength: 1.0" in the infotext
+ if n == 0:
+ with open(os.path.join(paths.data_path, "params.txt"), "w", encoding="utf8") as file:
+ processed = Processed(p, [], p.seed, "")
+ file.write(processed.infotext(p, 0))
+
uc = get_conds_with_caching(prompt_parser.get_learned_conditioning, negative_prompts, p.steps, cached_uc)
c = get_conds_with_caching(prompt_parser.get_multicond_learned_conditioning, prompts, p.steps, cached_c)
|