You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 7, 2025. It is now read-only.
Well, the reversed_step function in generative.networks.schedulers.ddim.py seems to try to generate x_t+1 from x_t with the Equation (6) in https://arxiv.org/pdf/2203.04306.pdf. However, in the process of implementing the reversed_step function, from https://arxiv.org/pdf/2010.02502.pdf is used to achieve it. In other word, the step_reverse function realize an equation x_t+1 = alpha_prod_t_next ** (0.5) * x_0+ x_t. Is that right?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Well, the reversed_step function in generative.networks.schedulers.ddim.py seems to try to generate x_t+1 from x_t with the Equation (6) in https://arxiv.org/pdf/2203.04306.pdf. However, in the process of implementing the reversed_step function, from https://arxiv.org/pdf/2010.02502.pdf is used to achieve it. In other word, the step_reverse function realize an equation x_t+1 = alpha_prod_t_next ** (0.5) * x_0+ x_t. Is that right?
The text was updated successfully, but these errors were encountered: