-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
pipe = StableDiffusionPipeline.from_single_file("xx.safetensors",
torch_dtype=torch.float16, load_safety_checker=False, controlnet=False,vae=AutoencoderKL.from_pretrained("stabilityai/sd-vae-ft-mse",torch_dtype=torch.float16).to("cuda")
).to("cuda")
**above code ,vae not work!! pictures use same seed with or without vae have no difference
but bellow work ,hahhaaaaa**
pipe = StableDiffusionPipeline.from_single_file("xx.safetensors",
torch_dtype=torch.float16, load_safety_checker=False, controlnet=False
).to("cuda")
pipe.vae=AutoencoderKL.from_pretrained("stabilityai/sd-vae-ft-mse",torch_dtype=torch.float16).to("cuda")
Reproduction
above code
Logs
No response
System Info
diffusers-0.19.0.dev0 6b1abba
Who can help?
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working