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
Hi. In the forward diffusion process, given e_0, the initial rotations, this function generates the noised rotations by R_noisy = E_scaled @ R0_scaled. where E_scaled is sampled from a prior distribution. I wonder why e_normal is not used but declared?
@luost26 , Hi. I have another question regarding the posterior formula of orientation
Why the mean of the posterior is the predicted O_0 instead of the interpolation between O_t and predicted O_0. The later one is more popular in Diffusion Model, including original DDPM.
diffab/diffab/modules/diffusion/transition.py
Line 98 in 6febe02
Hi. In the forward diffusion process, given e_0, the initial rotations, this function generates the noised rotations by
R_noisy = E_scaled @ R0_scaled
. where E_scaled is sampled from a prior distribution. I wonder whye_normal
is not used but declared?diffab/diffab/modules/diffusion/transition.py
Line 112 in 6febe02
In your paper, the
R_noisy
should be the interpolation betweenc0 * v_0
(scaled v_0) andc1 * e_scaled
. But your code does not use c1 at all.The text was updated successfully, but these errors were encountered: