Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The picture is full of noise use playground-v2.5-1024px-aesthetic.fp16.safetensors #7221

Closed
zhaoyun0071 opened this issue Mar 5, 2024 · 4 comments · Fixed by #7230
Closed
Labels
bug Something isn't working

Comments

@zhaoyun0071
Copy link

Describe the bug

with playground-v2.5-1024px-aesthetic.fp16.safetensors

image

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)

Logs

No response

System Info

diffusers==0.26.3

Who can help?

@yiyixuxu @sayakpaul @DN6

@zhaoyun0071 zhaoyun0071 added the bug Something isn't working label Mar 5, 2024
@sayakpaul
Copy link
Member

I think this is because the scheduler and VAE aren't handled accordingly here.

Cc: @DN6

@sayakpaul
Copy link
Member

@zhaoyun0071 check out #7230 ?

@zhaoyun0071
Copy link
Author

@zhaoyun0071 check out #7230 ?

thanks
No problem now

@nicksonredfield
Copy link

@zhaoyun0071 check out #7230 ?

is it possible to push this fix to A1111? really need it, tks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants