Hi,
I'm trying to replicate the official paper results on Office. I would like to follow the exact paper protocol, using a pretrained on imagenet Resnet50, but I'm missing some hints in order to let the resnet feature output and the generator match resolution.
In particular, I have noticed that the GAN part diverges if the generator input ( embedding output) is made too big. For example, the experiment svhn->mnist published in this repo has a final F embedding of 128 elements; increasing it will cause the algorithm to not converge.
But the ResNet50 ends up with 2048 features; how should I shrink them before passing them to the generator?
Hi,
I'm trying to replicate the official paper results on Office. I would like to follow the exact paper protocol, using a pretrained on imagenet Resnet50, but I'm missing some hints in order to let the resnet feature output and the generator match resolution.
In particular, I have noticed that the GAN part diverges if the generator input ( embedding output) is made too big. For example, the experiment svhn->mnist published in this repo has a final F embedding of 128 elements; increasing it will cause the algorithm to not converge.
But the ResNet50 ends up with 2048 features; how should I shrink them before passing them to the generator?