diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-06 14:53:33 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-06 14:53:33 +0000 |
commit | 5a0db84b6c7322082c7532df11a29a95a59a612b (patch) | |
tree | d28c4ed2cc29a105bcc1895b3600fc24f9c0aaec /modules/sd_samplers_compvis.py | |
parent | 956e69bf3a9387b6a6cda6823d729e3d3f13c3e1 (diff) | |
download | stable-diffusion-webui-gfx803-5a0db84b6c7322082c7532df11a29a95a59a612b.tar.gz stable-diffusion-webui-gfx803-5a0db84b6c7322082c7532df11a29a95a59a612b.tar.bz2 stable-diffusion-webui-gfx803-5a0db84b6c7322082c7532df11a29a95a59a612b.zip |
add infotext
add proper support for recalculating conds in k-diffusion samplers
remove support for compvis samplers
Diffstat (limited to 'modules/sd_samplers_compvis.py')
-rw-r--r-- | modules/sd_samplers_compvis.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/sd_samplers_compvis.py b/modules/sd_samplers_compvis.py index 5df926d3..2eeec18a 100644 --- a/modules/sd_samplers_compvis.py +++ b/modules/sd_samplers_compvis.py @@ -71,8 +71,6 @@ class VanillaStableDiffusionSampler: if state.interrupted or state.skipped:
raise sd_samplers_common.InterruptedException
- sd_samplers_common.apply_refiner(self)
-
if self.stop_at is not None and self.step > self.stop_at:
raise sd_samplers_common.InterruptedException
|