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 I can run train_text_to_image_lora.py with dataloader_num_workers=0. But it does not work with dataloader_num_workers>0. ### Reproduction I set dataloader_num_workers=4, here is the ouput. The following values were...

bug

### Describe the bug Task: generate a new hairstyle for a photo with inpaint+controlnet+mask Bug: webui can generate satisfied images while diffusers pipeline can not webui result: ![webui-bobcut](https://github.com/huggingface/diffusers/assets/822994/a3b58399-d85d-4ddc-8dd5-c24e99831985) diffuers result:...

bug

### Describe the bug [diffusers/blob/main/src/diffusers/models/normalization.py](https://github.com/huggingface/diffusers/blob/v0.26.3/src/diffusers/models/normalization.py#L46) The default value of dim parameter of chunk function is 0. The shape of scale and the shape of x doesn't match. ### Reproduction The...

bug
stale

### Model/Pipeline/Scheduler description Opening this issue for sharing the news but it should already be widely covered across social media or will be soon. The authors compare performance against the...

stale

# What does this PR do? Adds the missing log-odds part to the loss

stale

**Is your feature request related to a problem? Please describe.** We currently support passing in callbacks to pipelines in order to manipulate/customise aspects of the diffusion process. It would be...

help wanted
contributions-welcome
advanced

# What does this PR do? Introduces two variants of `Transformer2DModel`: * `DiTTransformer2DModel` * `PixArtTransformer2DModel` For the other instances where `Transformer2DModel` is used, they should later be turned to blocks...

refactor

This pull request fixes several imports in the codebase. Specifically, it removes unnecessary `StableDiffusionSafetyChecker` import and updates the import path for `dummy_pt_objects`. @sayakpaul @yiyixuxu @DN6

### Describe the bug Passing negative_prompt as list to PixArtAlphaPipeline will eventually cause a "list object has no attribute lower" error. The encode_prompt function documentation shows that it can be...

bug

I am working on creating a pipeline using a1111 or comfyui and implementing it with diffusers. In the controlnet mode of a1111, there is an option called 'my prompt is...

needs-code-example