dbd0e39204953df048ea90992a90a07caefa025f,pro_gan_pytorch/CustomLayers.py,PixelwiseNorm,forward,#PixelwiseNorm#,146

Before Change


        :param alpha: small number for numerical stability
        :return: y => pixel normalized activations
        
        y = th.mean(x.pow(2.), dim=1, keepdim=True) + alpha  // [N1HW]
        return x.div(y.sqrt())

After Change


        :param alpha: small number for numerical stability
        :return: y => pixel normalized activations
        
        y = x.pow(2.).mean(dim=1, keepdim=True).add(alpha).sqrt()  // [N1HW]
        y = x / y  // normalize the input x volume
        return y
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 2

Instances


Project Name: akanimax/pro_gan_pytorch
Commit Name: dbd0e39204953df048ea90992a90a07caefa025f
Time: 2018-11-27
Author: akanimax@gmail.com
File Name: pro_gan_pytorch/CustomLayers.py
Class Name: PixelwiseNorm
Method Name: forward


Project Name: pytorch/audio
Commit Name: 4e97213b48e152344b7429c7d1067e7525bfa4b9
Time: 2020-10-13
Author: 855818+mthrok@users.noreply.github.com
File Name: examples/source_separation/utils/metrics.py
Class Name:
Method Name: sdr


Project Name: keunwoochoi/kapre
Commit Name: fe8a6175dc98c7bc3b667fe88afcb5c2a4c94169
Time: 2017-01-17
Author: gnuchoi+github@gmail.com
File Name: kapre/stft.py
Class Name: Stft
Method Name: call