Replies: 5 comments 7 replies
-
Same issue here.
|
Beta Was this translation helpful? Give feedback.
-
@Gregwar |
Beta Was this translation helpful? Give feedback.
-
Same issue |
Beta Was this translation helpful? Give feedback.
-
Looks like the following rollback gets pix2pix working again on diff --git a/modules/processing.py b/modules/processing.py
index e124e7f0..8b95abd9 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -296,7 +296,7 @@ class StableDiffusionProcessing:
return conditioning
def edit_image_conditioning(self, source_image):
- conditioning_image = images_tensor_to_samples(source_image*0.5+0.5, approximation_indexes.get(opts.sd_vae_encode_method))
+ conditioning_image = shared.sd_model.encode_first_stage(source_image).mode()^M
return conditioning_image As a partial revert of 21000f1 |
Beta Was this translation helpful? Give feedback.
-
I believe this issue was fixed in 1.7 |
Beta Was this translation helpful? Give feedback.
-
Hello, I was trying Instruct Pix2pix on 1.5.0 with the [extension][https://github.com/Klace/stable-diffusion-webui-instruct-pix2pix), and it was working as expected:
I updated to 1.6.0, where Pix2pix should be supported by default, but it is always giving me giberish output, just like the denoising is actually doing its typical job:
The settings are the same in both cases (512x512 output, 1.25 image CFG, ~7 CFG), and set Denoising to 1 in 1.6.0.
The checkpoint is the same
Did I miss something ?
Beta Was this translation helpful? Give feedback.
All reactions