diff options
author | papuSpartan <30642826+papuSpartan@users.noreply.github.com> | 2023-05-03 18:12:43 +0000 |
---|---|---|
committer | papuSpartan <30642826+papuSpartan@users.noreply.github.com> | 2023-05-03 18:12:43 +0000 |
commit | e960781511eb175943be09b314ac2be46b6fc684 (patch) | |
tree | 1441d54859f012f87f624fda7170788cebc4960a /modules/processing.py | |
parent | f08ae961157d33051b5cd09ba5c77b779096ef69 (diff) | |
download | stable-diffusion-webui-gfx803-e960781511eb175943be09b314ac2be46b6fc684.tar.gz stable-diffusion-webui-gfx803-e960781511eb175943be09b314ac2be46b6fc684.tar.bz2 stable-diffusion-webui-gfx803-e960781511eb175943be09b314ac2be46b6fc684.zip |
fix maximum downsampling option
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py index d5d1da5a..6807a301 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -495,6 +495,7 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iter "Token merging merge mlp": None if opts.token_merging_merge_mlp is False else opts.token_merging_merge_mlp,
"Token merging stride x": None if opts.token_merging_stride_x == 2 else opts.token_merging_stride_x,
"Token merging stride y": None if opts.token_merging_stride_y == 2 else opts.token_merging_stride_y,
+ "Token merging maximum down sampling": None if opts.token_merging_maximum_down_sampling == 1 else opts.token_merging_maximum_down_sampling,
"Init image hash": getattr(p, 'init_img_hash', None),
"RNG": opts.randn_source if opts.randn_source != "GPU" else None,
"NGMS": None if p.s_min_uncond == 0 else p.s_min_uncond,
|