Closed
Description
Describe the bug
with XL ,When the image is enlarged for viewing,The drawn image will appear as red dots in most cases
Reproduction
from diffusers import StableDiffusionXLPipeline
base_model_path = r"sd_xl_base_1.0.safetensors"
import torch
pipe = StableDiffusionXLPipeline.from_single_file(base_model_path, torch_dtype=torch.float16,
use_safetensors=True, load_safety_checker=False).to('cuda')
image = pipe(prompt="a girl, realistic Documentary photography", guidance_scale=7, height=1280, width=768,
num_inference_steps=30,negative_prompt="").images[0]
image.save('test.png')
Logs
No response
System Info
diffusers 0.27.0