DDIM generation code #470
-
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? |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
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