diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-17 06:26:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-17 06:26:50 +0000 |
commit | 9ac85b8b73e180154453609f10b044a475289e24 (patch) | |
tree | 3af76d8c6ba3173ffd925336d902da058df4e02d /modules/shared.py | |
parent | 4b07f2f584596604c4499efb0b0295e96985080f (diff) | |
parent | 85232a5b26666854deae59cf950f744740dd5c37 (diff) | |
download | stable-diffusion-webui-gfx803-9ac85b8b73e180154453609f10b044a475289e24.tar.gz stable-diffusion-webui-gfx803-9ac85b8b73e180154453609f10b044a475289e24.tar.bz2 stable-diffusion-webui-gfx803-9ac85b8b73e180154453609f10b044a475289e24.zip |
Merge pull request #10365 from Sakura-Luna/taesd-a
Add Tiny AE live preview
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index 3abf71c0..165509ea 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -448,7 +448,7 @@ options_templates.update(options_section(('ui', "Live previews"), { "live_previews_image_format": OptionInfo("png", "Live preview file format", gr.Radio, {"choices": ["jpeg", "png", "webp"]}),
"show_progress_grid": OptionInfo(True, "Show previews of all images generated in a batch as a grid"),
"show_progress_every_n_steps": OptionInfo(10, "Live preview display period", gr.Slider, {"minimum": -1, "maximum": 32, "step": 1}).info("in sampling steps - show new live preview image every N sampling steps; -1 = only show after completion of batch"),
- "show_progress_type": OptionInfo("Approx NN", "Live preview method", gr.Radio, {"choices": ["Full", "Approx NN", "Approx cheap"]}).info("Full = slow but pretty; Approx NN = fast but low quality; Approx cheap = super fast but terrible otherwise"),
+ "show_progress_type": OptionInfo("Approx NN", "Live preview method", gr.Radio, {"choices": ["Full", "Approx NN", "Approx cheap", "TAESD"]}).info("Full = slow but pretty; Approx NN and TAESD = fast but low quality; Approx cheap = super fast but terrible otherwise"),
"live_preview_content": OptionInfo("Prompt", "Live preview subject", gr.Radio, {"choices": ["Combined", "Prompt", "Negative prompt"]}),
"live_preview_refresh_period": OptionInfo(1000, "Progressbar and preview update period").info("in milliseconds"),
}))
|