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
As is stated in your paper and also a common practice, the latent mapper should learn a residual of the input code,
w_edit = w_input + M(w_input)
However, the residual step is not implemented in your latent_mapper and styleclip_mappper. And in your trainer, you choose to ignore the forward function of styleclip_mapper and directly access styleclip_mapper.mapper, which is quite weird.
The text was updated successfully, but these errors were encountered:
As is stated in your paper and also a common practice, the latent mapper should learn a residual of the input code,
w_edit = w_input + M(w_input)
However, the residual step is not implemented in your
latent_mapper
andstyleclip_mappper
. And in your trainer, you choose to ignore the forward function of styleclip_mapper and directly access styleclip_mapper.mapper, which is quite weird.The text was updated successfully, but these errors were encountered: