minDiffusion
minDiffusion copied to clipboard
Self-contained, minimalistic implementation of diffusion models with Pytorch.
I'm having the following samples after training: - 200 epochs for 1 CELEBA image  - 100 epochs for 1000 CELEBA images  Shouldn't using only 1 image for training...
Hi! Im new to this stuff and don't understand how can i download a custom dataset and how to add it to this model? My questions are: what format should...
Hi! If I have a *.safetensors file, can I load it into minDiffusion? I mean can i use either checkpoint or lora downloaded from internet along with minDiffusion?
Why are you normalizing to 1.414 in unet.py? class Conv3(nn.Module): ... def forward(self, x: torch.Tensor) -> torch.Tensor: x = self.main(x) if self.is_res: x = x + self.conv(x) return x /...
Dear @cloneofsimo and @SilenceMonk, thanks so much for this code! It is beneficial and precisely the missing piece I need to understand diffusion models better. Also, I appreciated that I...
How to install `diffusion_utilities` in local mac or Colab