pfnet-research / sngan_projection

GANs with spectral normalization and projection discriminator
Other
1.09k stars 202 forks source link

Initialization for res_blocks #29

Closed r06922019 closed 6 years ago

r06922019 commented 6 years ago

Hi, I'd like to know if there's a particular reason for using glorot_uniform as the initializer of ResBlocks? As far as I know, ResBlocks are known to work well with he_normal initialization.

takerum commented 6 years ago

just followed the network implementation used in the original WGAN-GP paper: https://github.com/igul222/improved_wgan_training

r06922019 commented 6 years ago

I see. Thanks for the explanation.