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

### Describe the bug Running any diffusers Wan example code crashes for me, when running from inside Blender python (everything else in Diffusers has run fine from Blender Python over...

bug

```python3 diffusers.WanVACEPipeline.from_pretrained('linoyts/Wan2.2-VACE-Fun-14B-diffusers', vae=diffusers.AutoencoderKLWan.from_pretrained('linoyts/Wan2.2-VACE-Fun-14B-diffusers', subfolder='vae', torch_dtype=torch.float32), torch_dtype=torch.bfloat16, quantization_config=diffusers.PipelineQuantizationConfig(quant_backend='bitsandbytes_8bit', quant_kwargs={'load_in_8bit':True}, components_to_quantize=['transformer', 'transformer_2'])).save_pretrained('wan') ``` normally I can save the quantization model in this way But now I want to merge lora and the...

Worth considering? https://huggingface.co/alibaba-pai/Z-Image-Turbo-Fun-Controlnet-Union

### Describe the bug tried different versions of diffusers but getting this error, trying to run the https://github.com/SkyworkAI/SkyReels-V2 ### Reproduction tried different versions of diffusers but getting this error, trying...

bug

# What does this PR do? By optimizing CausalConv3d, this patch improves the overall performance of wan autoencoders by 5-10%. ## Before submitting - [ ] This PR fixes a...

# What does this PR do? Fixes `QwenImageEditPlusPipeline` not using the passed in width/height for the VAE. Currently if you set the width/height to anything other than 1024x1024, for example...

# What does this PR do? Following the plan outlined for Diffusers 1.0.0, this PR introduces changes to our model testing approach in order to reduce the overhead involved in...

How to use quantizer after pipeline loaded? - Currently ```python # Quantization occurs at load time. pipe = QwenImagePipeline.from_pretrained( ( args.model_path if args.model_path is not None else os.environ.get( "QWEN_IMAGE_DIR", "Qwen/Qwen-Image",...

# What does this PR do? As discussed internally, this PR introduces pipeline-specific Mixin classes that hold common methods shared across different task-specific pipelines. The actual pipelines (such as `StableDiffusionPipeline`,...

# What does this PR do? This PR allows users to pass a `device_map="cpu"` while initializing a pipeline and then enable model CPU offloading. This is beneficial when users want...