diffusers
diffusers copied to clipboard
🤗 Diffusers: State-of-the-art diffusion models for image, video, and audio generation in PyTorch.
# What does this PR do? Fix a recurring problem when using diffusers without console, e.g. using `pythonw.exe` in windows, since there's no `sys.stderr`. I can make a more advanced...
Thanks for the opportunity to continue #4251 @yiyixuxu. There was uncertainty about whether `sigma_s0` or `sigma_s1` should be used in the second-order update in `sde-dpmsolver++` when @cmdr2 was implementing. I...
# What does this PR do? Extension of https://github.com/huggingface/diffusers/pull/7995. Some comments are in line. ## Todos - [ ] Add licensing
# What does this PR do? It is basically a mirror of https://github.com/huggingface/diffusers/pull/8670. I had accidentally merged it but I have reverted it in https://github.com/huggingface/diffusers/pull/8773. Apologies for this. I have...
# What does this PR do? To prevent things like this from happening: https://github.com/huggingface/diffusers/pull/8416
# What does this PR do? Refer to https://github.com/huggingface/diffusers/pull/7647/#discussion_r1621374787
# What does this PR do? By being more specific on the imports, we can cut down the overall import time in our library. Follow this thread: https://huggingface.slack.com/archives/C021H1P1HKR/p1719924173632779. We should...
# What does this PR do? This PR introduces a `ContinuousTransformer2DModelBlock` to replace the intermediate `Transformer2DModel` from model classes like `UNet2DConditionModel`. Currently, all our UNets that have cross-attention (`UNetMotionModel`, `UNet2DConditionModel`,...
On 0.28.2, this from diffusers.loaders.autoencoder import FromOriginalVAEMixin will fail with this error ImportError: cannot import name 'create_diffusers_vae_model_from_ldm' from 'diffusers.loaders.single_file_utils' (/usr/local/lib/python3.10/dist-packages/diffusers/loaders/single_file_utils.py) If you look at the source code, `create_diffusers_vae_model_from_ldm` imported here:...
# What does this PR do? When loading the T5 encoder in SD3 with `from_pretrained` certain layers are are kept in fp32. Currently this is not the case with single...