google / compare_gan

Compare GAN code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is the widening factor of S2GAN's feature extractor really 16?

RuiLiFeng opened this issue · comments

Hi, I've read your paper "High-Fidelity Image GenerationWith Fewer Labels". It's a very fascinating work but I have one question about the pretrained feature extractor F.
image

In the paper you say you use ResNet50 V2 with widening factor 16, which is abnormally large, including 4 times more parameters than the BigGAN discriminator. My computer even cannot successfully construct it in CPU.

My resnet v2 code is from pytorch official repo https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py. I wonder whether I am misunderstanding your paper.

Yes, we used ResNet50 V2 with a widening factor of 16. We are working on open sourcing the code that as well.

@Marvin182 Thank you for your reply, that helps me a lot. Look for work to your feature works!

@Marvin182 By the way, did you have experiments with smaller widening factor, such as 2 or 4, could that outperform the co-training version?