-
Beta Was this translation helpful? Give feedback.
Answered by
llmydota
Feb 26, 2025
Replies: 1 comment
-
I found that all schedulers can be interchanged, but during training, it's best to use the
During generation, you can choose any scheduler. However, when using a scheduler that implements the EulerDiscreteScheduler's add_noise method, you need to be cautious:
In summary, you can mix and match schedulers during inference, but when using a scheduler like EulerDiscreteScheduler, it's important to scale the input at each step. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
llmydota
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found that all schedulers can be interchanged, but during training, it's best to use the
add_noise
method from theDDPMScheduler
:During generation, you can choose any scheduler. However, when using a scheduler that implements the EulerDiscreteScheduler's add_noise method, you need to be cautious: