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
In the classifier-free guidance paper, the formulation is as follow
However, it is implemented in DALL-2 as null_logits + (logits - null_logits) * cond_scale
According to the formula it should be logits + (logits - null_logits) * cond_scale
where the logits are the conditional score and null_logits are the unconditional ones.
Can you please clarify the reason for this modification?
Thank you!
The text was updated successfully, but these errors were encountered:
In the classifier-free guidance paper, the formulation is as follow
However, it is implemented in DALL-2 as
null_logits + (logits - null_logits) * cond_scale
According to the formula it should be
logits + (logits - null_logits) * cond_scale
where the logits are the conditional score and null_logits are the unconditional ones.
Can you please clarify the reason for this modification?
Thank you!
The text was updated successfully, but these errors were encountered: