mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-02-12 10:42:27 -08:00
Add s_tmax
This commit is contained in:
parent
c6278c15a8
commit
c11104fed5
2 changed files with 2 additions and 1 deletions
|
|
@ -148,7 +148,7 @@ class StableDiffusionProcessing:
|
|||
self.s_min_uncond = s_min_uncond or opts.s_min_uncond
|
||||
self.s_churn = s_churn or opts.s_churn
|
||||
self.s_tmin = s_tmin or opts.s_tmin
|
||||
self.s_tmax = s_tmax or float('inf') # not representable as a standard ui option
|
||||
self.s_tmax = opts.data.get('s_tmax', 0) or float('inf') # not representable as a standard ui option
|
||||
self.s_noise = s_noise or opts.s_noise
|
||||
self.override_settings = {k: v for k, v in (override_settings or {}).items() if k not in shared.restricted_opts}
|
||||
self.override_settings_restore_afterwards = override_settings_restore_afterwards
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue