wasidennis / AdaptSegNet

Learning to Adapt Structured Output Space for Semantic Segmentation, CVPR 2018 (spotlight)
847 stars 203 forks source link

Output size of the discriminator #37

Closed cmitash closed 5 years ago

cmitash commented 5 years ago

Hi Authors, I was just curious to know what is the size of the output from the discriminator that you used in your experiments. Is it the same as the size of the input (as you mention in the paper). Or is it downsampled? - As the upsampling code was commented out in the file "AdaptSegNet/model/discriminator.py". In either case, if possible please share some insights into how this could affect the adaptation.

Thanks!

wasidennis commented 5 years ago

The output of the discriminator is not upsampled. The upsampled one mentioned in the paper is the output of the segmentation model (generator).

licaizi commented 4 years ago

@wasidennis But you did mention an upsample layer in discriminator, right? image

wasidennis commented 4 years ago

@CaiziLee sorry for the misunderstanding. We did try to upsample the final layer, but the results were not affected. In the final implementation as released here, there is no upsampling layer. We will correct it in the paper.