-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
makeup loss #2
Comments
That may be a little difference with the statement in paper. You can also try to implement yourself and make a PR. |
Hi, I have implemented makeuploss myself before, almost the same as your implement work. But it seems that the color of HM result is sometimes far away from the reference image. |
Yes, your observation is normal. Because HM is only a coarse gudiance, which need adv training to refine. If the results are perfect, there is no need to propose BeautyGAN. |
Okay. Could you please tell me how to balance the weights of all losses? I have tried many times before... |
lambda_his = 1 |
Thank you. It is the same as the description in paper. And I wonder how you get that weights, and the weights of GANLoss. |
Does it work? How do I import the data set? I have a problem importing it |
Hi, thanks for your implement work, but i doubt wheater the implement of makeup loss is correct, the paper says that we should calculate the histogram matching between src image and ref image firstly, then calculate the l2 norm between fake image which generated by generator and matched image, i
find that you just calculate makeuo loss between the generated image and reference image which dont normlization the value to [-1, 1], and use L1 norm, could you help me? thanks!
The text was updated successfully, but these errors were encountered: