ESanchezLozano / GANnotation

GANnotation (PyTorch): Landmark-guided face to face synthesis using GANs (And a triple consistency loss!)
Other
194 stars 30 forks source link

I am confused about the sign of the formula in the paper #8

Closed scutzzy closed 5 years ago

scutzzy commented 5 years ago

At pixel loss, it has double vertical line with upper 2 and lower 2,is it means squared Euclidean norm? and at consistency loss with only upper 2, is it the same as pixel loss?and at Identity preserving loss, with only double vertical line, is it simply means Euclidean norm?

ESanchezLozano commented 5 years ago

The pixel loss is the typical MSE, though it can be replaced by an L1 norm error. MSE seems to make it a bit smoother whereas typically L1 norm seems to work better when properly combined with GANs. You might just observe some subtle differences in the pixel level. The identity preserving is L1 norm and the other two are L1 norm too. This shall be eventually corrected in the manuscript. Thanks for pointing this out. I hope this helps!