diff options
author | Yevhenii Hurin <evgeny.gurin@gmail.com> | 2023-01-29 13:47:14 +0000 |
---|---|---|
committer | Yevhenii Hurin <evgeny.gurin@gmail.com> | 2023-01-29 13:47:14 +0000 |
commit | c46f3ad98b1171d7ad42bf1653e6770b52147bfd (patch) | |
tree | 3eb596481afd559bf94a8c696b93d3f22b0e65c8 /modules/processing.py | |
parent | 7c53f81caf817a7e7dc9c2fafebfcce269ecb1d7 (diff) | |
parent | 00dab8f10defbbda579a1bc89c8d4e972c58a20d (diff) | |
download | stable-diffusion-webui-gfx803-c46f3ad98b1171d7ad42bf1653e6770b52147bfd.tar.gz stable-diffusion-webui-gfx803-c46f3ad98b1171d7ad42bf1653e6770b52147bfd.tar.bz2 stable-diffusion-webui-gfx803-c46f3ad98b1171d7ad42bf1653e6770b52147bfd.zip |
Merge branch 'master' of https://github.com/AUTOMATIC1111/stable-diffusion-webui
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/processing.py b/modules/processing.py index afab6790..2d295932 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -450,8 +450,6 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iter "Size": f"{p.width}x{p.height}",
"Model hash": getattr(p, 'sd_model_hash', None if not opts.add_model_hash_to_info or not shared.sd_model.sd_model_hash else shared.sd_model.sd_model_hash),
"Model": (None if not opts.add_model_name_to_info or not shared.sd_model.sd_checkpoint_info.model_name else shared.sd_model.sd_checkpoint_info.model_name.replace(',', '').replace(':', '')),
- "Batch size": (None if p.batch_size < 2 else p.batch_size),
- "Batch pos": (None if p.batch_size < 2 else position_in_batch),
"Variation seed": (None if p.subseed_strength == 0 else all_subseeds[index]),
"Variation seed strength": (None if p.subseed_strength == 0 else p.subseed_strength),
"Seed resize from": (None if p.seed_resize_from_w == 0 or p.seed_resize_from_h == 0 else f"{p.seed_resize_from_w}x{p.seed_resize_from_h}"),
|