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
The equ 1 can be seen as:
the $\epsilon(z_t, \emptyset, I_{prompt})$ is computed conditioned on empty image and $I_{prompt}$.
But I found in the inference code(line 895 in model/pipeline.py), you do not compute noise_pred_img according to $\epsilon(z_t, \emptyset, I_{prompt})$.
noise_pred_null represents $\epsilon(z_t, \emptyset, \emptyset)$,
noise_pred_text is $\epsilon(z_t, I_{e}^{'}, I_{prompt})$
noise_pred_img is $\epsilon(z_t, I_{e}, \emptyset)$,
noise_pred_full is $\epsilon(z_t, I_{e}, I_{prompt})$.
So based on the above analysis, can you explain why this happens?
The text was updated successfully, but these errors were encountered:
The equ 1 can be seen as:

$\epsilon(z_t, \emptyset, I_{prompt})$ is computed conditioned on empty image and $I_{prompt}$ .$\epsilon(z_t, \emptyset, I_{prompt})$ .

$\epsilon(z_t, \emptyset, \emptyset)$ ,$\epsilon(z_t, I_{e}^{'}, I_{prompt})$ $\epsilon(z_t, I_{e}, \emptyset)$ ,$\epsilon(z_t, I_{e}, I_{prompt})$ .
the
But I found in the inference code(line 895 in model/pipeline.py), you do not compute noise_pred_img according to
noise_pred_null represents
noise_pred_text is
noise_pred_img is
noise_pred_full is
So based on the above analysis, can you explain why this happens?
The text was updated successfully, but these errors were encountered: