You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with playground-v2.5-1024px-aesthetic.fp16.safetensors
Reproduction
from diffusers import StableDiffusionXLPipeline
pipeline = StableDiffusionXLPipeline.from_single_file(
r"E:\模型\SDXL\playground-v2.5-1024px-aesthetic.fp16.safetensors", local_files_only=True, use_safetensors=True)
print('pipeline loaded')
pipeline.to('cuda')
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipeline(prompt=prompt, guidance_scale=3.0).images
for i, img in enumerate(image):
with open(f'./pg_{i}.jpg','w+') as f:
img.save(f)
Describe the bug
with playground-v2.5-1024px-aesthetic.fp16.safetensors
Reproduction
Logs
No response
System Info
diffusers==0.26.3
Who can help?
@yiyixuxu @sayakpaul @DN6
The text was updated successfully, but these errors were encountered: