diffusers icon indicating copy to clipboard operation
diffusers copied to clipboard

🤗 Diffusers: State-of-the-art diffusion models for image, video, and audio generation in PyTorch.

Results 1293 diffusers issues
Sort by recently updated
recently updated
newest added

# What does this PR do? Since we now have multiple offload options available in group offload (standard, low_cpu_mem_usage, offload_to_disk), it would make sense to create separate utility functions for...

# What does this PR do? Useful for handling offloading in a simple and easy manner. @DN6 I am including changes to `examples/**/*.py` to also trigger the fast PR tests...

### Describe the bug i want to dynamically switch the lora with applying group offloading ,but failed ### Reproduction ```python from diffusers import HunyuanVideoPipeline, HunyuanVideoTransformer3DModel from diffusers.utils import export_to_video import...

bug

### Describe the bug I have trained a sdxl lora with the script https://github.com/huggingface/diffusers/blob/7bc0a07b1947bcbe0e84bbe9ecf8ae2d234382c4/examples/advanced_diffusion_training/train_dreambooth_lora_sdxl_advanced.py , and a loading error was encountered during the validation in the end of the training...

bug

# What does this PR do? Fixes #11761 ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can dismiss the other checks if...

# What does this PR do? https://github.com/huggingface/diffusers/pull/11760#issuecomment-2988691717

### Describe the bug ### Describe the bug I'm running a Stable Diffusion-based app on Hugging Face Spaces using a custom Dockerfile. After upgrading to `diffusers==0.24.0`, I still encounter an...

bug

The meanflow paper requires two things - support for multiple time embeddings. - calculating jvp ## support for multiple time embeddings my idea is to have a parameter called `multiple_time_embeddings`...