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/img2img.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/img2img.py')
-rw-r--r-- | modules/img2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index 73af5acb..bec4354f 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -155,7 +155,7 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s inpaint_full_res_padding=inpaint_full_res_padding,
inpainting_mask_invert=inpainting_mask_invert,
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,
|