diff options
author | Kyle <zerouex@gmail.com> | 2023-02-05 20:18:18 +0000 |
---|---|---|
committer | Kyle <zerouex@gmail.com> | 2023-02-05 20:18:18 +0000 |
commit | c8109f0dea0af10336597fecc200ff1e53b701d0 (patch) | |
tree | e8696846010eda04d42fec0cecea2c8409029a1e /scripts/xyz_grid.py | |
parent | ea9bd9fc7409109adcd61b897abc2c8881161256 (diff) | |
download | stable-diffusion-webui-gfx803-c8109f0dea0af10336597fecc200ff1e53b701d0.tar.gz stable-diffusion-webui-gfx803-c8109f0dea0af10336597fecc200ff1e53b701d0.tar.bz2 stable-diffusion-webui-gfx803-c8109f0dea0af10336597fecc200ff1e53b701d0.zip |
Add Image CFG Scale to XYZ Grid
Diffstat (limited to 'scripts/xyz_grid.py')
-rw-r--r-- | scripts/xyz_grid.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/xyz_grid.py b/scripts/xyz_grid.py index 5982cfba..db4396b4 100644 --- a/scripts/xyz_grid.py +++ b/scripts/xyz_grid.py @@ -186,6 +186,7 @@ axis_options = [ AxisOption("Steps", int, apply_field("steps")),
AxisOptionTxt2Img("Hires steps", int, apply_field("hr_second_pass_steps")),
AxisOption("CFG Scale", float, apply_field("cfg_scale")),
+ AxisOption("Image CFG Scale", float, apply_field("image_cfg_scale")),
AxisOption("Prompt S/R", str, apply_prompt, format_value=format_value),
AxisOption("Prompt order", str_permutations, apply_order, format_value=format_value_join_list),
AxisOptionTxt2Img("Sampler", str, apply_sampler, format_value=format_value, confirm=confirm_samplers, choices=lambda: [x.name for x in sd_samplers.samplers]),
|