### Describe the bug Hello. I tried the Img2Img Pipeline and encountered the error in the images. Could you please check it for me? Thank you <img width="1363" alt="Screenshot 2024-10-17 at 11 39 30" src="https://github.com/user-attachments/assets/8128883f-ae9c-4e70-9ac0-437651fb9163"> <img width="1362" alt="Screenshot 2024-10-17 at 11 39 46" src="https://github.com/user-attachments/assets/d5e13710-6520-4880-9442-6cbe5c36fa8d"> ### Reproduction ```python import torch from diffusers import AutoPipelineForImage2Image from diffusers.utils import make_image_grid, load_image pipeline = AutoPipelineForImage2Image.from_pretrained( "stable-diffusion-v1-5/stable-diffusion-v1-5/", torch_dtype=torch.float16, variant="fp16", use_safetensors=True ) pipeline.enable_model_cpu_offload() url = "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/img2img-init.png" init_image = load_image(url) prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipeline(prompt, image=init_image).images[0] make_image_grid([init_image, image], rows=1, cols=2) ``` ### Logs _No response_ ### System Info diffusers 0.30.3 Python 3.9.20 ### Who can help? _No response_