diffusers
diffusers copied to clipboard
🤗 Diffusers: State-of-the-art diffusion models for image, video, and audio generation in PyTorch.
### 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...
### 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:  diffuers result:...
### 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...
### 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...
# What does this PR do? Adds the missing log-odds part to the loss
**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...
# 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...
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...
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...