google / compare_gan

Compare GAN code.
Apache License 2.0
1.82k stars 317 forks source link

SNDCGAN implementation is different from the architecture described in SN paper #45

Closed kuc2477 closed 4 years ago

kuc2477 commented 4 years ago

https://github.com/google/compare_gan/blob/19922d3004b675c1a49c4d7515c06f6f75acdcc8/compare_gan/architectures/sndcgan.py#L109-L121

Spectral Normalization paper uses 64-64-128-128-256-256-512 conv blocks for D. However, this repo's D is using 64-128-128-256-256-512-512 conv blocks, which is larger.

image

kuc2477 commented 4 years ago

Considering that this is mentioned in the paper, I guess this is an intended design, not a bug! Sorry for bothering!