This repository was archived by the owner on Feb 7, 2025. It is now read-only.
DDIM generation code #470
Answered
by
marksgraham
Ahmad-Omar-Ahsan
asked this question in
Q&A
|
Hello, I am using a DDIM scheduler to generate images from 1000 steps. Unfortunately, the generated images are dark, unlike the training distribution. I have also generated the intermediate steps, but the intermediate steps are filled with noise. I have tried using a DDPM scheduler for the reverse process, which gives me the desired output, but the DDIM scheduler doesn't. How do I debug this? |
Answered by
marksgraham
Feb 23, 2024
Replies: 1 comment 3 replies
|
In my experience, sometimes a DDIM scheduler doesn't work with 1000 steps during sampling, but will work better for fewer timesteps, say 100. So i would try that. I've also found more training is required to get good samples from a DDIM sampler, compared to a DDPM sampler, so make sure your model has trained long enough |
3 replies
Answer selected by
Ahmad-Omar-Ahsan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In my experience, sometimes a DDIM scheduler doesn't work with 1000 steps during sampling, but will work better for fewer timesteps, say 100. So i would try that. I've also found more training is required to get good samples from a DDIM sampler, compared to a DDPM sampler, so make sure your model has trained long enough