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 Hi, This only happens on the 768 model, the base and 1.5/1.4 are not affected as far as I can tell. Here are the samples produced...

bug

Makes sure weights are always loaded in the correct format

### Describe the bug I had the training script working fine but then I updated diffusers to 0.7.2 and now I get the following error: ```sh Traceback (most recent call...

bug

### Describe the bug If you try to generate multiple images with StableDiffusionImg2ImgPipeline by using the num_images_per_prompt parameter, under MPS all you get is noise/brown images. ![CleanShot 2022-10-22 at 10...

bug
stale

### Describe the bug how to combine train_unconditional.py with LDMPipline ### Reproduction _No response_ ### Logs _No response_ ### System Info diffuser=0.6.0 python=3.8.12 pycharm

bug

https://huggingface.co/CompVis/stable-diffusion-v1-4 https://huggingface.co/CompVis/stable-diffusion-v1-3 https://huggingface.co/CompVis/stable-diffusion-v1-2 https://huggingface.co/CompVis/stable-diffusion-v1-1 are all no longer gated! This means you don't have to be logged in to download the model. Just doing: ```python from diffusers import DiffusionPipeline pipeline...

I cannot believe that I really ask this but after two hours of research I didn't find a working way. I did it very often a few months ago but...

### Describe the bug When trying to upscale images larger than 128x128 the progress goes to 100% and then crashes with CUDA OOM. With 512x512 images it's trying to allocate...

bug

Adding flip_sin_to_cos arg for FlaxTimesteps and passing it to get_sinusodial_embeddings. Currently, FlaxTimesteps hardcodes the order of the sin and cosine embeddings ([1](https://github.com/huggingface/diffusers/blob/main/src/diffusers/models/embeddings_flax.py#L92)). However, in the UNet2DConditionModel the order is an...

This PR makes it possible to generate 4k images in 8GB of VRAM using a tiled VAE codec combined with `enable_xformers_memory_efficient_attention()`. With 24GB of VRAM, you can generate 8k images....