diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-17 12:08:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-17 12:08:14 +0000 |
commit | b4703b788b7a9af39ccab06a9b7ac6a9b96e0378 (patch) | |
tree | 60411c5c4ed72d788fb2b1520cb749d2508925c1 | |
parent | 1210548cba9dbd78378a710d75601922addefca2 (diff) | |
parent | 315f109427a5dbbf48b0da560640523800fe3c1d (diff) | |
download | stable-diffusion-webui-gfx803-b4703b788b7a9af39ccab06a9b7ac6a9b96e0378.tar.gz stable-diffusion-webui-gfx803-b4703b788b7a9af39ccab06a9b7ac6a9b96e0378.tar.bz2 stable-diffusion-webui-gfx803-b4703b788b7a9af39ccab06a9b7ac6a9b96e0378.zip |
Merge pull request #10461 from akx/processed-s-min-uncond
Copy s_min_uncond to Processed
-rw-r--r-- | modules/processing.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py index 678c4468..cd63b9a6 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -316,6 +316,7 @@ class Processed: self.s_tmin = p.s_tmin
self.s_tmax = p.s_tmax
self.s_noise = p.s_noise
+ self.s_min_uncond = p.s_min_uncond
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]
|