diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-20 16:16:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-20 16:16:40 +0000 |
commit | 1f26815dd3ea5a0b8c094854e47219aec866f28c (patch) | |
tree | c431f04236a79f70f0219fbcee4e1298f9dcbf22 | |
parent | 23c947ab0374220c39ac54fc00afcb74e809dd95 (diff) | |
parent | 8218f6cd37040eb3ec5d9c68ad54249a44c39166 (diff) | |
download | stable-diffusion-webui-gfx803-1f26815dd3ea5a0b8c094854e47219aec866f28c.tar.gz stable-diffusion-webui-gfx803-1f26815dd3ea5a0b8c094854e47219aec866f28c.tar.bz2 stable-diffusion-webui-gfx803-1f26815dd3ea5a0b8c094854e47219aec866f28c.zip |
Merge pull request #11898 from janekm/janekm-patch-1
Update sd_models_xl.py
-rw-r--r-- | modules/sd_models_xl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/sd_models_xl.py b/modules/sd_models_xl.py index 01320c7a..40559208 100644 --- a/modules/sd_models_xl.py +++ b/modules/sd_models_xl.py @@ -12,8 +12,8 @@ def get_learned_conditioning(self: sgm.models.diffusion.DiffusionEngine, batch: for embedder in self.conditioner.embedders:
embedder.ucg_rate = 0.0
- width = getattr(self, 'target_width', 1024)
- height = getattr(self, 'target_height', 1024)
+ width = getattr(batch, 'width', 1024)
+ height = getattr(batch, 'height', 1024)
is_negative_prompt = getattr(batch, 'is_negative_prompt', False)
aesthetic_score = shared.opts.sdxl_refiner_low_aesthetic_score if is_negative_prompt else shared.opts.sdxl_refiner_high_aesthetic_score
|