75b752934910f21259d323768f5c1b0163956afc,pytorch/pytorchcv/models/others/oth_msdnet2.py,CifarClassifier,__init__,#CifarClassifier#Any#Any#,556
Before 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)
After Change
out_channels=mid_channels,
stride=2,
bias=True))
self.features.add_module("conv2", conv3x3_block(
in_channels=mid_channels,
out_channels=mid_channels,
stride=2,
bias=True))
self.features.add_module("pool", nn.AvgPool2d(
kernel_size=2,
stride=2))
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: osmr/imgclsmob
Commit Name: 75b752934910f21259d323768f5c1b0163956afc
Time: 2019-01-19
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: 93610a1c2a67321537554016ccf516fdbd532d45
Time: 2019-12-03
Author: osemery@gmail.com
File Name: pytorch/pytorchcv/models/hrnet.py
Class Name: HRFinalBlock
Method Name: __init__
Project Name: osmr/imgclsmob
Commit Name: 5d700e1a74dfb9233ee3b6b65b57f588a7fb0415
Time: 2021-02-08
Author: osemery@gmail.com
File Name: pytorch/pytorchcv/models/lednet.py
Class Name: APN
Method Name: __init__