c1d2e0e7dc79e4f1a91ef007771347e475f301e5,gluon/gluoncv2/models/bninception.py,InceptionDouble3x3Branch,__init__,#InceptionDouble3x3Branch#Any#Any#Any#Any#Any#,79
Before Change
out_channels=out_channels,
use_bias=True,
bn_use_global_stats=bn_use_global_stats)
self.conv3 = conv3x3_block(
in_channels=out_channels,
out_channels=out_channels,
strides=strides,
use_bias=True,
bn_use_global_stats=bn_use_global_stats)
def hybrid_forward(self, F, x):
x = self.conv1(x)
x = self.conv2(x)
After Change
use_bias : bool
Whether the convolution layer uses a bias vector.
use_bn : bool
Whether to use BatchNorm layers.
bn_use_global_stats : bool
Whether global moving statistics is used instead of local batch-norm for BatchNorm layers.
def __init__(self,
in_channels,
out_channels,
avg_pool,
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: osmr/imgclsmob
Commit Name: c1d2e0e7dc79e4f1a91ef007771347e475f301e5
Time: 2019-08-20
Author: osemery@gmail.com
File Name: gluon/gluoncv2/models/bninception.py
Class Name: InceptionDouble3x3Branch
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: c1d2e0e7dc79e4f1a91ef007771347e475f301e5
Time: 2019-08-20
Author: osemery@gmail.com
File Name: gluon/gluoncv2/models/bninception.py
Class Name: Inception3x3Branch
Method Name: __init__