annotated_deep_learning_paper_implementations
annotated_deep_learning_paper_implementations copied to clipboard
Unet error in DDPM
When training with the celeba dataset, the program encountered an error.
Yes, I am getting the same one. Did you find any solution? I'll let you know if I do.
same issue.Have you solved the problem? When I use dataset MNIST,it works well.
I'd like to work on this issue. Can I take it?
DownSample use Conv2d with kernel_size (3, 3), but UpSample use ConvTranspose2d with kernel_size (4, 4) which results in the (H, W) of x larger than s. I add a F.pad operation before torch.cat