diff options
author | MMaker <mmaker@mmaker.moe> | 2023-01-04 09:22:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 09:22:01 +0000 |
commit | e5b7ee910e7bb88f08e8876b5732cb034c6fe529 (patch) | |
tree | 22aee1661a106ebde582c355d894af9eb67fd7cf | |
parent | 7e549468b3d01e6cdf6d07d00c2719c1a5787517 (diff) | |
download | stable-diffusion-webui-gfx803-e5b7ee910e7bb88f08e8876b5732cb034c6fe529.tar.gz stable-diffusion-webui-gfx803-e5b7ee910e7bb88f08e8876b5732cb034c6fe529.tar.bz2 stable-diffusion-webui-gfx803-e5b7ee910e7bb88f08e8876b5732cb034c6fe529.zip |
fix: Save full res of intermediate step
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index a172af0b..93e75ba6 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -705,7 +705,7 @@ class StableDiffusionProcessingTxt2Img(StableDiffusionProcessing): return
if not isinstance(image, Image.Image):
- image = sd_samplers.sample_to_image(image, index)
+ image = sd_samplers.sample_to_image(image, index, approximation=0)
images.save_image(image, self.outpath_samples, "", seeds[index], prompts[index], opts.samples_format, suffix="-before-highres-fix")
|