Closed TinyTigerPan closed 1 year ago
Hi.
Does this happen without torch.compile()
?
Also is this behaviour fairly consistency across different number of inference steps and initial seeds?
Thanks for your reply.
I have tried different num_inference_steps
, and try not use torch.compile()
, but the problem still remain.
I found when I save image as jpg format, the problem will not appear, because of the compression.
I also try to upgrade pillow(PIL)
, but it seems not the problem of saving picture.
Thanks!
Does this happen for particular types of prompts?
I have tried different prompts, all have this problem. The strange pixel only have sepecific color (pink and cyan), and in random position, seems like some special coding or watermark.
This is the "invisible" watermark, which is not invisible.
Disable it using:
class NoWatermark:
def apply_watermark(self, img):
return img
...
pipe.watermark = NoWatermark()
...
refiner.watermark = NoWatermark()
Thanks a lot, it works. Maybe there are some bugs to make the watermark visible.
Possibly duplicate then: https://github.com/huggingface/diffusers/issues/4014. Let's continue the discussion on that thread. So, closing this one.
This happens even without the watermarker for me. It doesn't seem to happen with Euler scheduler, but does seem to happen with DPMSolverMultistepScheduler. Using VAE tiling and bf16 for unet, VAE, and CLIP.
@AmericanPresidentJimmyCarter could you open a new issue with a repro?
Hi, thanks for your work on SDXL. When I use diffuser to inference SDXL, some pixels of the generated image appear strange colors, like the following image.
Here is the code I used. I download the SDXL ckpt to load.
and wheter I used refiner or not, the problem still remain.