Domain-specific mapping functions
wvinzh opened this issue · 1 comments
wvinzh commented
I found only one domain-specific mapping function in your code, but according to the paper, there should be two.
Did I understand it wrong?
acht7111020 commented
Yes, there are two domain-specific mapping functions, one for domain A and another for domain B.
Please refer to trainer.py
line 31 and 32, we use different AdaINGen
(encoder and generator) for each domain.
The domain-specific mapping is called by AdaINGen
in networks.py
line 115.
Thanks!