-
Notifications
You must be signed in to change notification settings - Fork 18
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
pretrained model #1
Comments
Hi @dleam , thanks for your interest! Here it is: https://1drv.ms/u/s!AmVzKjduHCxdqSQrUlK7nxz2wvZj |
Thanks for your quick reply. I will try it. |
Hi @Peilun-Li , I have tried your model and the result is excellent. I have another question about your code after reading your paper.
Why do you multiply fake_B and mask_B (fake_A and mask_A) here? " To my understanding, the fake_B and (semantic)mask_B have different structures. How to understand this operation in your code? Thanks~ |
Hi @dleam , Per this feed_dict setting (https://github.com/Peilun-Li/SG-GAN/blob/master/model.py#L215-L231) you can find fake_B_sample is adapted from real_A, and mask_B_sample is actually mask_A. Since we wanna keep semantic information from being changed during the adaptation, fake_B_sampe and real_A should share the same semantic information, thus we are multiplying fake_B_sample with mask_A, i.e., mask_B_sample. |
Thank you! |
Excellent job. Can you please provide a pretrained model for the further research?
The text was updated successfully, but these errors were encountered: