diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-09-26 14:40:47 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-27 06:30:45 +0000 |
commit | 4ea36a37d69fafcb60cf3f250b6c0e1bcfe82bb1 (patch) | |
tree | 9088da5f8f4d33d03c706a3ab5015c3e06abc31b /modules | |
parent | 2ab3d593f9091689cdef07442df0213ef3242603 (diff) | |
download | stable-diffusion-webui-gfx803-4ea36a37d69fafcb60cf3f250b6c0e1bcfe82bb1.tar.gz stable-diffusion-webui-gfx803-4ea36a37d69fafcb60cf3f250b6c0e1bcfe82bb1.tar.bz2 stable-diffusion-webui-gfx803-4ea36a37d69fafcb60cf3f250b6c0e1bcfe82bb1.zip |
add sampler properties to StableDiffusionProcessing and Processed
Diffstat (limited to 'modules')
-rw-r--r-- | modules/processing.py | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 3abf3181..8d043f4d 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -78,7 +78,14 @@ class StableDiffusionProcessing: self.paste_to = None
self.color_corrections = None
self.denoising_strength: float = 0
-
+
+ self.ddim_eta = opts.ddim_eta
+ self.ddim_discretize = opts.ddim_discretize
+ self.s_churn = opts.s_churn
+ self.s_tmin = opts.s_tmin
+ self.s_tmax = float('inf') # not representable as a standard ui option
+ self.s_noise = opts.s_noise
+
if not seed_enable_extras:
self.subseed = -1
self.subseed_strength = 0
@@ -117,6 +124,13 @@ class Processed: self.extra_generation_params = p.extra_generation_params
self.index_of_first_image = index_of_first_image
+ self.ddim_eta = p.ddim_eta
+ self.ddim_discretize = p.ddim_discretize
+ self.s_churn = p.s_churn
+ self.s_tmin = p.s_tmin
+ self.s_tmax = p.s_tmax
+ self.s_noise = p.s_noise
+
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])
|