diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-29 05:51:13 +0000 |
---|---|---|
committer | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-29 05:51:13 +0000 |
commit | 7ab16e99eedf3b5da7e596218a585f6966aee4d8 (patch) | |
tree | 30ba1a0bf2e084c0ce5a78ee9b1f0987474db2d5 /scripts/xyz_grid.py | |
parent | 63d3150dc4f5c4452a4a385329eb8954f53d6451 (diff) | |
download | stable-diffusion-webui-gfx803-7ab16e99eedf3b5da7e596218a585f6966aee4d8.tar.gz stable-diffusion-webui-gfx803-7ab16e99eedf3b5da7e596218a585f6966aee4d8.tar.bz2 stable-diffusion-webui-gfx803-7ab16e99eedf3b5da7e596218a585f6966aee4d8.zip |
Add option to align with sgm repo sampling implementation
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 517d6332..939d8605 100644 --- a/scripts/xyz_grid.py +++ b/scripts/xyz_grid.py @@ -265,6 +265,7 @@ axis_options = [ AxisOption("Token merging ratio", float, apply_override('token_merging_ratio')),
AxisOption("Token merging ratio high-res", float, apply_override('token_merging_ratio_hr')),
AxisOption("Always discard next-to-last sigma", str, apply_override('always_discard_next_to_last_sigma', boolean=True), choices=boolean_choice(reverse=True)),
+ AxisOption("SGM noise multiplier", str, apply_override('sgm_noise_multiplier', boolean=True), choices=boolean_choice(reverse=True)),
AxisOption("Refiner checkpoint", str, apply_field('refiner_checkpoint'), format_value=format_remove_path, confirm=confirm_checkpoints_or_none, cost=1.0, choices=lambda: ['None'] + sorted(sd_models.checkpoints_list, key=str.casefold)),
AxisOption("Refiner switch at", float, apply_field('refiner_switch_at')),
AxisOption("RNG source", str, apply_override("randn_source"), choices=lambda: ["GPU", "CPU", "NV"]),
|