diffusers
diffusers copied to clipboard
question on set_timesteps
Thank you for releasing a wonderful repository! Let me ask a newbie question.
What API design would you like to have changed or added to the library? Why?
diffusers.DDPMScheduler.set_timesteps
What use case would this enable or better enable? Can you give us a code example?
I guess diffusers.DDPMScheduler.set_timesteps is for faster sampling.
However, diffusers.DDPMScheduler.step seems to sample x_{t-1} given x_{t}, according to here. Is there any official way to sample x_{t-a} given x_{t} (a > 1) easily other than manually unrolling the step function?