diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-09-26 14:46:01 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-27 06:30:45 +0000 |
commit | fc2aa6b8f379c341bed9c7bc3457b5be9790f6ce (patch) | |
tree | b62b35b9c8f80ff62f76a9f8ecfb520b3862e309 /scripts/xy_grid.py | |
parent | a860839f1ffa827cd0a9356d6d5e9125585a66e0 (diff) | |
download | stable-diffusion-webui-gfx803-fc2aa6b8f379c341bed9c7bc3457b5be9790f6ce.tar.gz stable-diffusion-webui-gfx803-fc2aa6b8f379c341bed9c7bc3457b5be9790f6ce.tar.bz2 stable-diffusion-webui-gfx803-fc2aa6b8f379c341bed9c7bc3457b5be9790f6ce.zip |
Add extra sampler params to xy_grid
Diffstat (limited to 'scripts/xy_grid.py')
-rw-r--r-- | scripts/xy_grid.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/xy_grid.py b/scripts/xy_grid.py index 279af6b7..3721c717 100644 --- a/scripts/xy_grid.py +++ b/scripts/xy_grid.py @@ -87,7 +87,12 @@ axis_options = [ AxisOption("Prompt S/R", str, apply_prompt, format_value),
AxisOption("Sampler", str, apply_sampler, format_value),
AxisOption("Checkpoint name", str, apply_checkpoint, format_value),
- AxisOptionImg2Img("Denoising", float, apply_field("denoising_strength"), format_value_add_label), # as it is now all AxisOptionImg2Img items must go after AxisOption ones
+ AxisOption("Sigma Churn", float, apply_field("s_churn"), format_value_add_label),
+ AxisOption("Sigma min", float, apply_field("s_tmin"), format_value_add_label),
+ AxisOption("Sigma max", float, apply_field("s_tmax"), format_value_add_label),
+ AxisOption("Sigma noise", float, apply_field("s_noise"), format_value_add_label),
+ AxisOptionImg2Img("Denoising", float, apply_field("denoising_strength"), format_value_add_label),
+ AxisOptionImg2Img("DDIM Eta", float, apply_field("ddim_eta"), format_value_add_label) # as it is now all AxisOptionImg2Img items must go after AxisOption ones
]
|