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 /scripts | |
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 'scripts')
-rw-r--r-- | scripts/xyz_grid.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/xyz_grid.py b/scripts/xyz_grid.py index cea43c18..74ece252 100644 --- a/scripts/xyz_grid.py +++ b/scripts/xyz_grid.py @@ -220,10 +220,10 @@ axis_options = [ AxisOption("Sigma min", float, apply_field("s_tmin")),
AxisOption("Sigma max", float, apply_field("s_tmax")),
AxisOption("Sigma noise", float, apply_field("s_noise")),
- AxisOption("Karras Scheduler Type", str, apply_field("k_sched_type"), choices=lambda: [x for x in sd_samplers_kdiffusion.k_diffusion_scheduler]),
- AxisOption("Karras Scheduler Sigma Min", float, apply_field("sigma_min")),
- AxisOption("Karras Scheduler Sigma Max", float, apply_field("sigma_max")),
- AxisOption("Karras Scheduler rho", float, apply_field("rho")),
+ AxisOption("KDiffusion Scheduler Type", str, apply_field("k_sched_type"), choices=lambda: [x for x in sd_samplers_kdiffusion.k_diffusion_scheduler]),
+ AxisOption("KDiffusion Scheduler Sigma Min", float, apply_field("sigma_min")),
+ AxisOption("KDiffusion Scheduler Sigma Max", float, apply_field("sigma_max")),
+ AxisOption("KDiffusion Scheduler rho", float, apply_field("rho")),
AxisOption("Eta", float, apply_field("eta")),
AxisOption("Clip skip", int, apply_clip_skip),
AxisOption("Denoising", float, apply_field("denoising_strength")),
|