We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
1920x1080 (w x h) throws error
https://github.com/huggingface/diffusers/blob/main/src/diffusers/pipelines/aura_flow/pipeline_aura_flow.py if height % 8 != 0 or width % 8 != 0: raise ValueError(f"height and width have to be divisible by 8 but are {height} and {width}.")
height
width
Same as #10650
import torch from diffusers import AuraFlowPipeline pipe = AuraFlowPipeline.from_pretrained("fal/AuraFlow", torch_dtype=torch.float16) pipe = pipe.to("cuda") prompt = "A cat holding a sign that says hello world" image = pipe(prompt, width=1920, height=1080).images[0] image.save("aura_flow.png")
former_2d.py", line 89, in forward latent = latent.view( RuntimeError: shape '[2, 4, 67, 2, 120, 2]' is invalid for input of size 259200
N.A.
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
1920x1080 (w x h) throws error
https://github.com/huggingface/diffusers/blob/main/src/diffusers/pipelines/aura_flow/pipeline_aura_flow.py
if height % 8 != 0 or width % 8 != 0:
raise ValueError(f"
height
andwidth
have to be divisible by 8 but are {height} and {width}.")Same as
#10650
Reproduction
Logs
System Info
N.A.
Who can help?
No response
The text was updated successfully, but these errors were encountered: