diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-05-22 15:26:28 +0000 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-05-22 15:26:28 +0000 |
commit | 7882f76da45de7279c7db0dd17b6aca82b7ddf46 (patch) | |
tree | 8ad7f36f6bdab8565c4bb37a0938880a591dee25 /modules/txt2img.py | |
parent | f82105144319fef7e973339062e972b6688fae11 (diff) | |
download | stable-diffusion-webui-gfx803-7882f76da45de7279c7db0dd17b6aca82b7ddf46.tar.gz stable-diffusion-webui-gfx803-7882f76da45de7279c7db0dd17b6aca82b7ddf46.tar.bz2 stable-diffusion-webui-gfx803-7882f76da45de7279c7db0dd17b6aca82b7ddf46.zip |
Replace karras by k_diffusion, fix gen info
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r-- | modules/txt2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py index 28d30568..dd52e710 100644 --- a/modules/txt2img.py +++ b/modules/txt2img.py @@ -43,7 +43,7 @@ def txt2img(id_task: str, prompt: str, negative_prompt: str, prompt_styles, step hr_prompt=hr_prompt,
hr_negative_prompt=hr_negative_prompt,
override_settings=override_settings,
- enable_karras=enable_k_sched,
+ enable_custom_k_sched=enable_k_sched,
k_sched_type=k_sched_type,
sigma_min=sigma_min,
sigma_max=sigma_max,
|