aboutsummaryrefslogtreecommitdiffstats
path: root/modules/processing.py
diff options
context:
space:
mode:
authorRnDMonkey <RnDMonkey@users.noreply.github.com>2022-10-01 22:52:21 +0000
committerGitHub <noreply@github.com>2022-10-01 22:52:21 +0000
commit37c9073f58e25513392cd68a5b0fca70c9bd17b5 (patch)
tree4127e073124e9feed8d5269076c0ac731e4be294 /modules/processing.py
parentf6a97868e57e44fba6c4283769fedd30ee11cacf (diff)
parent3f417566b0bda8eab05d247567aebf001c1d1725 (diff)
downloadstable-diffusion-webui-gfx803-37c9073f58e25513392cd68a5b0fca70c9bd17b5.tar.gz
stable-diffusion-webui-gfx803-37c9073f58e25513392cd68a5b0fca70c9bd17b5.tar.bz2
stable-diffusion-webui-gfx803-37c9073f58e25513392cd68a5b0fca70c9bd17b5.zip
Merge branch 'AUTOMATIC1111:master' into trunk
Diffstat (limited to 'modules/processing.py')
-rw-r--r--modules/processing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/processing.py b/modules/processing.py
index 7eeb5191..1da753a2 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -79,7 +79,7 @@ class StableDiffusionProcessing:
self.paste_to = None
self.color_corrections = None
self.denoising_strength: float = 0
-
+ self.sampler_noise_scheduler_override = None
self.ddim_discretize = opts.ddim_discretize
self.s_churn = opts.s_churn
self.s_tmin = opts.s_tmin
@@ -130,7 +130,7 @@ class Processed:
self.s_tmin = p.s_tmin
self.s_tmax = p.s_tmax
self.s_noise = p.s_noise
-
+ self.sampler_noise_scheduler_override = p.sampler_noise_scheduler_override
self.prompt = self.prompt if type(self.prompt) != list else self.prompt[0]
self.negative_prompt = self.negative_prompt if type(self.negative_prompt) != list else self.negative_prompt[0]
self.seed = int(self.seed if type(self.seed) != list else self.seed[0])