Add diffusers weights and configs

#7
by dn6 HF staff - opened
No description provided.

cannot import name 'FluxPipeline' from 'diffusers'

@Mazequeen install diffusers from github

you're probably not using including the revision keyword when initializing FluxPipeline.from_pretrained:

...
pipe = FluxPipeline.from_pretrained(
    ckpt_id,
    revision="refs/pr/7", # revision="refs/pr/1" also works
    torch_dtype=torch.bfloat16,
)
...

@latentCall145 thank you , it worked now <3

timudk changed pull request status to merged

Sign up or log in to comment