google / compare_gan

Compare GAN code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

spectral_norm_update_ops unused?

nwestlake opened this issue · comments

My understanding is that spectral_norm_update_ops in compare_gan/src/gans/ops.py is not used at all and perhaps wasn't used. Is my understanding correct?

Thanks Nicholas, The spectral norm function is actually called via "def spectral_norm(input_)", in the operation linear and conv2d.

def spectral_norm(input_):

The function spectral_norm_update_ops is deprecated and we will remove the unused code in the future release.