diffusers
diffusers copied to clipboard
🤗 Diffusers: State-of-the-art diffusion models for image, video, and audio generation in PyTorch.
**Is your feature request related to a problem? Please describe.** I have a use-case where I need to use custom adapter together with instruct-pix2pix model, which requires passing custom `cross_attention_kwargs`...
Since we were considering adding an option like `single_file_format` to `save_pretrained()` of `DiffusionPipeline`, it makes sense to have something similar in `from_pretrained()` to have better feature parity. We currently support...
Hello! This is my first time making a PR to diffusers so I apologise if I have missed something! This PR implements the same behaviour from `unet_2d_condition.py` and `unet_3d_condition.py` to...
# What does this PR do? Lora dreambooth training scripts for Wuerstchen prior pipeline. Example: https://wandb.ai/krasul/dreambooth-lora/runs/7ia16ohd needs #6046
**Is your feature request related to a problem? Please describe.** I was following [instructions for T2IAdapter](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion/adapter) and trying to load the t2iadapter_style_sd14v1 adapter (Huggingface Hub [link](https://huggingface.co/TencentARC/T2I-Adapter/blob/main/models/t2iadapter_style_sd14v1.pth)). ``` from diffusers import...
In my case, I need to do img2img on multiple images, I saw the parameter "image" can be a list of PIL.image.iamge but when I used a list of images...
### Describe the bug None of our three models using ddim timestep can reproduce the FID in the ddim paper, and the fid of the three models varies greatly with...
### Model/Pipeline/Scheduler description A very great model for image2video generation (also frame interpolation, storyboarding and looping videos). The architecture is based on the current text2video Unet paradigm, so it shouldn't...
### Model/Pipeline/Scheduler description https://github.com/huggingface/diffusers/assets/72266394/a0f2a4d9-ed6e-403e-8a44-f53a9831467d ### Open source status - [X] The model implementation is available. - [X] The model weights are available (Only relevant if addition is not a scheduler)....
### Describe the bug When I load the model for my training, I just want to use the unconditional model. But I have this problem. Could anyone tell me how...