diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-05-22 15:09:03 +0000 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-05-22 15:09:03 +0000 |
commit | f82105144319fef7e973339062e972b6688fae11 (patch) | |
tree | 80bf5968bee3ae0a0d3ed593da9adef1f5ede52f /modules/processing.py | |
parent | e6269cba7fd84a76b2bd0012cb954f947a79b6a5 (diff) | |
download | stable-diffusion-webui-gfx803-f82105144319fef7e973339062e972b6688fae11.tar.gz stable-diffusion-webui-gfx803-f82105144319fef7e973339062e972b6688fae11.tar.bz2 stable-diffusion-webui-gfx803-f82105144319fef7e973339062e972b6688fae11.zip |
Change karras to kdiffusion
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/processing.py b/modules/processing.py index ad5d5960..3fb05d79 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -564,10 +564,10 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iter "Steps": p.steps,
"Sampler": p.sampler_name,
"Enable Custom Karras Schedule": p.enable_karras,
- "Karras Scheduler Type": p.k_sched_type,
- "Karras Scheduler sigma_max": p.sigma_max,
- "Karras Scheduler sigma_min": p.sigma_min,
- "Karras Scheduler rho": p.rho,
+ "kdiffusion Scheduler Type": p.k_sched_type,
+ "kdiffusion Scheduler sigma_max": p.sigma_max,
+ "kdiffusion Scheduler sigma_min": p.sigma_min,
+ "kdiffusion Scheduler rho": p.rho,
"CFG scale": p.cfg_scale,
"Image CFG scale": getattr(p, 'image_cfg_scale', None),
"Seed": all_seeds[index],
|