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
This is the code for calculating 'next step' in null_text_w_ptp.ipynb, but I think it's different from the equation in your paper.
According to your paper, next step can be calculated as: $$z_{t+1}=\sqrt{{\alpha_{t+1}}\over \alpha_t}z_t + \left(\sqrt{{1 \over {\alpha_{t+1}}} - 1} - \sqrt{{1 \over \alpha_t} - 1}\right)\cdot \epsilon_\theta (z_t, t, C)$$
Latent is calculated at timestep $t$, and this code calculates latent from timestep $t-20$ to timestep $t$, so this code performs the same as using $\epsilon_\theta (z_t, t+20, C))$ instead of $\epsilon_\theta (z_t, t, C))$.
The text was updated successfully, but these errors were encountered:
This is the code for calculating 'next step' in null_text_w_ptp.ipynb, but I think it's different from the equation in your paper.
According to your paper, next step can be calculated as:
$$z_{t+1}=\sqrt{{\alpha_{t+1}}\over \alpha_t}z_t + \left(\sqrt{{1 \over {\alpha_{t+1}}} - 1} - \sqrt{{1 \over \alpha_t} - 1}\right)\cdot \epsilon_\theta (z_t, t, C)$$
Latent is calculated at timestep$t$ , and this code calculates latent from timestep $t-20$ to timestep $t$ , so this code performs the same as using $\epsilon_\theta (z_t, t+20, C))$ instead of $\epsilon_\theta (z_t, t, C))$ .
The text was updated successfully, but these errors were encountered: