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
Notice that the author uses a new linear noise schedule instead of the Linear or cosine schedules used in DDPM. The selection in the code is noise_ schedule='linear var', which corresponds to lines 303-309 in gaussian_diffusion. py, but I do not understand the correspondence between these codes and Eq. 4 in the paper. I hope the author can help me.
Looking forward to your reply very much.
The text was updated successfully, but these errors were encountered:
The implementation of the linear noise schedule specified in Eq.(4) is represented by the np.linspace(...) operation found in line 53 of gaussian_diffusion.py. The function betas_from_linear_variance, which can be found in lines 303-309 of the same file, is responsible for deriving $\beta_t$ from the linear $1-\bar{\alpha}_t$.
Notice that the author uses a new linear noise schedule instead of the Linear or cosine schedules used in DDPM. The selection in the code is noise_ schedule='linear var', which corresponds to lines 303-309 in gaussian_diffusion. py, but I do not understand the correspondence between these codes and Eq. 4 in the paper. I hope the author can help me.
Looking forward to your reply very much.
The text was updated successfully, but these errors were encountered: