diffusers
diffusers copied to clipboard
🤗 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch and FLAX.
Hi, just a beginner with diffusion models and have been using your implementations as reference. I have a question about [this class](https://github.com/huggingface/diffusers/blob/3a32b8c916beced18f721f1c95f9cbd6c4c4aacb/src/diffusers/models/embeddings.py#L94) Why is `requires_grad` set to false in the...
This PR adds conversion script for text2img latent diffusion models from CompVis.
Hi, Is there a way to make the latent diffusion model able to get the context from any modality (that would be user defined) with a training script associated to...
This is more of a newby issue, but I would find it helpful if there was an example showing how to continue training from an existing checkpoint and/or start training...
Greetings. Consider I have a `model.ckpt` file, and it's trained and saved on my local computer. It's not hosted on huggingface and let's consider it's a little bit confidential and...
Hello, Please try to simplify training dataset of our own. It is taking lot of Time and it is difficult to train using current setup.
Let's say we have multiple diffusion models, as in the Cascading diffusion model paper. Is there an easy way to setup training such that each conditional model is trained simultaneously...
The score-based generative models sometimes us a Langevin Dynamics step to de-noise samples; see [NCSN](https://arxiv.org/abs/2006.09011). In the diffusion model for generating molecule conformations, [GeoDiff](https://github.com/MinkaiXu/GeoDiff), this step function had the best...