diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-11-27 13:28:32 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-11-27 13:28:32 +0000 |
commit | 506d529d19f135f57e142371271f84d4971b456f (patch) | |
tree | 2ce3f9431baa71149afc320eacd6d23118847832 /modules/sd_samplers.py | |
parent | 488f831d528f538f8c6a801e91d80c5e2ee05cf1 (diff) | |
download | stable-diffusion-webui-gfx803-506d529d19f135f57e142371271f84d4971b456f.tar.gz stable-diffusion-webui-gfx803-506d529d19f135f57e142371271f84d4971b456f.tar.bz2 stable-diffusion-webui-gfx803-506d529d19f135f57e142371271f84d4971b456f.zip |
rework #5012 to also work for pictures dragged into the prompt and also add Clip skip + ENSD to parameters
Diffstat (limited to 'modules/sd_samplers.py')
-rw-r--r-- | modules/sd_samplers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_samplers.py b/modules/sd_samplers.py index 2ca17d8b..5fefb227 100644 --- a/modules/sd_samplers.py +++ b/modules/sd_samplers.py @@ -18,7 +18,7 @@ from modules.script_callbacks import CFGDenoiserParams, cfg_denoiser_callback SamplerData = namedtuple('SamplerData', ['name', 'constructor', 'aliases', 'options'])
samplers_k_diffusion = [
- ('Euler a', 'sample_euler_ancestral', ['k_euler_a'], {}),
+ ('Euler a', 'sample_euler_ancestral', ['k_euler_a', 'k_euler_ancestral'], {}),
('Euler', 'sample_euler', ['k_euler'], {}),
('LMS', 'sample_lms', ['k_lms'], {}),
('Heun', 'sample_heun', ['k_heun'], {}),
|