-
Notifications
You must be signed in to change notification settings - Fork 236
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
ValueError: AutoPipeline can't find a pipeline linked to SanaPipeline for None #141
Comments
Use import torch
from diffusers import SanaPipeline
b_pipe = SanaPipeline.from_pretrained(
"Efficient-Large-Model/Sana_1600M_1024px_BF16_diffusers",
torch_dtype=torch.bfloat16
).to("cuda") |
Yes. I already did. But my question is, other pipelines such as FluxPipeline, SD3LargePipeline etc works with AutoPipelineForText2Image but why not Sana ? |
Will fix it soon. |
@lawrence-cj |
@lawrence-cj |
run |
Since
SanaPipline
has been added to Diffusers as a custom pipeline it is possible to useSanaPipeline
from diffusers.But when trying to use
AutoPipelineForText2Image
which automatically selects the needed custom pipeline for a model ID, it fails to work by throwing an error:Codeblock:
What is the reason for this error ? Please help me.
The text was updated successfully, but these errors were encountered: