-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Is DDUF format supported? #10710
Comments
Was able to run on a Linux machine as is (except for the direct device placement): from diffusers import DiffusionPipeline
import torch
pipe = DiffusionPipeline.from_pretrained(
"DDUF/FLUX.1-dev-DDUF", dduf_file="FLUX.1-dev.dduf", torch_dtype=torch.bfloat16
).to("cuda")
image = pipe(
"photo a cat holding a sign that says Diffusers", num_inference_steps=50, guidance_scale=3.5
).images[0]
image.save("cat.png") Could you ensure your model_file = _merge_sharded_checkpoints( |
Not tested. |
snippet from @sayakpaul works for me |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I checked this PR, #10037 and it is merged
The text was updated successfully, but these errors were encountered: