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 Multiple mismatched argument errors in train_dreambooth_sd3.py when training with train_text_encoder set to True. Ordering/assignment errors in train_dreambooth_lora_sd3.py when training with train_text_encoder set to True. ### Reproduction...

bug

### Describe the bug Segmentation fault (core dump) in the TextToVideoZeroPipeline inference ### Reproduction Following https://huggingface.co/docs/diffusers/v0.29.0/en/api/pipelines/text_to_video_zero#usage-example ``` import torch from diffusers import TextToVideoZeroPipeline model_id = "runwayml/stable-diffusion-v1-5" pipe = TextToVideoZeroPipeline.from_pretrained(model_id, torch_dtype=torch.float16).to("cuda")...

bug

### Describe the bug **Describe the bug** Activating --gradient_checkpointing in either Lora or DB scripts for SD3 causes: TypeError: layer_norm(): argument 'input' (position 1) must be Tensor, not tuple, which...

bug

### Describe the bug I've been using diffuser for couple months, primarily for `StableDiffusionPipeline` and `StableDiffusionXLPipeline` image inference using a downloaded .safetensors A while back I upgraded to v28.2 and...

bug

### Describe the bug in diffusers/loaders/controlnet.py, there is from .single_file_utils import ( create_diffusers_controlnet_model_from_ldm, fetch_ldm_config_and_checkpoint, ) But, there is no create_diffusers_controlnet_model_from_ldm function in single_file_utils.py ### Reproduction from .single_file_utils import ( create_diffusers_controlnet_model_from_ldm,...

bug
single_file

### Describe the bug ![WechatIMG659](https://github.com/huggingface/diffusers/assets/49861565/8d3a44d9-fed3-46c5-93d1-8f9791f1f901) ### Reproduction ```python from diffusers.models.controlnet_sd3 import SD3ControlNetModel from diffusers.models.transformers import SD3Transformer2DModel transformer = SD3Transformer2DModel.from_pretrained( "stabilityai/stable-diffusion-3-medium-diffusers", subfolder="transformer") controlnet = SD3ControlNetModel.from_transformer(transformer) ``` ### Logs _No response_ ###...

bug

# What does this PR do? Adds `examples/inference/vae_roundtrip.py` to demonstrate VAE inference without any other models or pipelines. ## Before submitting - [ ] This PR fixes a typo or...

stale

# What does this PR do? This PR refactors the pipeline to mirror other common pipelines by adding in `callback_on_step_end` and `callback_on_step_end_tensor_inputs`, along with cfg rescaling. In the callbacks, you...

### Describe the bug In Invoke's 3.6.3 version, we updated to the latest Diffusers available at the time (.26) for the benefit of the scheduler fixes. A user has provided...

stale
scheduler

### Describe the bug When looking at the **examples/text_to_image** documentation, I experimented with the **train_text_to_image_lora.py** following the examples in the documentation. But I found that the run with ```raise ValueError("Attempting...

bug
stale