aboutsummaryrefslogtreecommitdiffstats
path: root/modules/processing.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-08-06 02:55:20 +0000
committerGitHub <noreply@github.com>2023-08-06 02:55:20 +0000
commitf4e4992a4a2d5a8446ffa702eb07eadf014d7d24 (patch)
treef46ed9945382179cf73b780867e4bb018e329d72 /modules/processing.py
parentc6278c15a81bf65efb65ded50368972a920cc198 (diff)
parent85c2c138d2f5f853c79bde3775d69628e86c65ca (diff)
downloadstable-diffusion-webui-gfx803-f4e4992a4a2d5a8446ffa702eb07eadf014d7d24.tar.gz
stable-diffusion-webui-gfx803-f4e4992a4a2d5a8446ffa702eb07eadf014d7d24.tar.bz2
stable-diffusion-webui-gfx803-f4e4992a4a2d5a8446ffa702eb07eadf014d7d24.zip
Merge pull request #12357 from catboxanon/s-tmax
Add option for `s_tmax`
Diffstat (limited to 'modules/processing.py')
-rw-r--r--modules/processing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py
index a9d66005..2003532d 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -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', s_tmax or 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