c8fadd2d970f1c62ae8a842464056263f8d1232f,resnet.py,myResnet,forward,#myResnet#Any#,31

Before Change


        fc = x.mean(2).mean(3).squeeze()
        att = spatialAdaAvgPool(x,14,14).squeeze().permute(1, 2, 0)

        return fc, att

After Change


        x = self.layer4(x)

        x = self.avgpool(x)
        x = x.view(x.size(0), -1)
        x = self.fc(x)

        return x

Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: ruotianluo/self-critical.pytorch
Commit Name: c8fadd2d970f1c62ae8a842464056263f8d1232f
Time: 2017-02-13
Author: rluo@ttic.edu
File Name: resnet.py
Class Name: myResnet
Method Name: forward


Project Name: facebookresearch/Horizon
Commit Name: b9b54d4f30ff65cf1c54dc0cf90c938b48c44f90
Time: 2020-04-28
Author: kittipat@fb.com
File Name: reagent/models/dqn.py
Class Name: DQNBase
Method Name: forward