58e8ae4db6624b2ef6a8cbc08398828eb306ce9d,pytorch/pytorchcv/models/others/oth_msdnet2.py,CifarClassifier,__init__,#CifarClassifier#Any#Any#,496

Before Change


            nn.Conv2d(num_channels, self.inner_channels, kernel_size=3,
                      stride=2, padding=1),
            nn.BatchNorm2d(self.inner_channels),
            nn.ReLU(inplace=True),
            nn.Conv2d(self.inner_channels, self.inner_channels, kernel_size=3,
                      stride=2, padding=1),
            nn.BatchNorm2d(self.inner_channels),

After Change


                out_channels=mid_channels,
                stride=2,
                bias=True),
            conv3x3_block(
                in_channels=mid_channels,
                out_channels=mid_channels,
                stride=2,
                bias=True),
            nn.AvgPool2d(
                kernel_size=2,
                stride=2)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 2

Instances


Project Name: osmr/imgclsmob
Commit Name: 58e8ae4db6624b2ef6a8cbc08398828eb306ce9d
Time: 2019-01-16
Author: osemery@gmail.com
File Name: pytorch/pytorchcv/models/others/oth_msdnet2.py
Class Name: CifarClassifier
Method Name: __init__


Project Name: osmr/imgclsmob
Commit Name: 24d55af991a8cb8faeeabcb7838f472986d8fa4b
Time: 2019-01-31
Author: osemery@gmail.com
File Name: pytorch/pytorchcv/models/others/oth_dla2.py
Class Name: Root
Method Name: __init__


Project Name: osmr/imgclsmob
Commit Name: 24d55af991a8cb8faeeabcb7838f472986d8fa4b
Time: 2019-01-31
Author: osemery@gmail.com
File Name: pytorch/pytorchcv/models/others/oth_dla2.py
Class Name: SimpleBlock
Method Name: __init__


Project Name: osmr/imgclsmob
Commit Name: 58e8ae4db6624b2ef6a8cbc08398828eb306ce9d
Time: 2019-01-16
Author: osemery@gmail.com
File Name: pytorch/pytorchcv/models/others/oth_msdnet2.py
Class Name: MSDLayer
Method Name: convolve