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

It is based on the diffuser model conversion algorithm to onnx. Tested this: https://github.com/ForserX/StableDiffusionUI Decoder only.

I recently converted stable diffusion to float16 onnx with the convert tool. Everything works great. Except the text_encoder.onnx doesn't work (as in it doesn't produce any images just random patterns)....

### Describe the bug convert_stable_diffusion_checkpoint_to_onnx.py doesn't convert .ckpt to .onnx and throws ``` raise EnvironmentError(f"It looks like the config file at '{config_file}' is not a valid JSON file.") OSError: It...

bug

**Describe the solution you'd like** Now that we have an official way to tweak cross attention https://github.com/huggingface/diffusers/pull/1639 , would be great to have a pipeline (be it official or community)...

good first issue
New pipeline/model

Hello! I really would like to train Lora on my 24 GB GPU but I always get OOM. Is there any parameter or setting which I missed and which could...

A common problem of diffusers models/pipelines is that many components of different pipelines share the exact same underlying weights, but it's hard to avoid not downloading them twice. We could...

Hello. I am very interested in the unconditional image generation pipelines. Like in this example here: https://github.com/huggingface/diffusers/tree/main/examples/unconditional_image_generation I have trained a network that is 128x128 and it gives very good...

enhancement
New pipeline/model

### Describe the bug I am trying to run `train_text_to_image.py` on TPU v4-8 but when I start training, I see ``` 02/01/2023 21:12:22 - INFO - train_text_to_image - Distributed environment:...

bug

**Is your feature request related to a problem? Please describe.** K-Diffusion enables users to generate sigmas with `k_diffusion.sampling.get_sigmas_karras`. `diffusers` currently do not support using those to generate the sigmas with...

wip

The conversion scripts can convert ckpt and safetensors models to diffusers format, but it does not work for inpainting or instruct-pix2pix models: Example: Using this safetensors file: https://huggingface.co/stabilityai/stable-diffusion-2-inpainting/blob/main/512-inpainting-ema.safetensors `python3 convert_original_stable_diffusion_to_diffusers.py...