Skip to content

Commit

Permalink
Upd comments style, 2
Browse files Browse the repository at this point in the history
  • Loading branch information
osmr committed Dec 27, 2020
1 parent af9a7de commit e8b7d64
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion chainer_/chainercv2/models/squeezenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def squeezeresnet_v1_0(**kwargs):

def squeezeresnet_v1_1(**kwargs):
"""
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer Parameters:
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer parameters
and <0.5MB model size,' https://arxiv.org/abs/1602.07360.
Parameters:
Expand Down
2 changes: 1 addition & 1 deletion gluon/gluoncv2/models/others/oth_alpha_pose.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def hybrid_forward(self, F, x):

class FastSEResNet(HybridBlock):
""" FastSEResNet """
try_load_parameters = _try_load_Parameters:
try_load_parameters = _try_load_parameters

def __init__(self, architecture, norm_layer=nn.BatchNorm, **kwargs):
super(FastSEResNet, self).__init__()
Expand Down
2 changes: 1 addition & 1 deletion gluon/gluoncv2/models/squeezenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def squeezeresnet_v1_0(**kwargs):

def squeezeresnet_v1_1(**kwargs):
"""
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer Parameters:
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer parameters
and <0.5MB model size,' https://arxiv.org/abs/1602.07360.
Parameters:
Expand Down
2 changes: 1 addition & 1 deletion keras_/kerascv/models/squeezenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def squeezeresnet_v1_0(**kwargs):

def squeezeresnet_v1_1(**kwargs):
"""
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer Parameters:
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer parameters
and <0.5MB model size,' https://arxiv.org/abs/1602.07360.
Parameters:
Expand Down
2 changes: 1 addition & 1 deletion pytorch/pytorchcv/models/others/oth_ibppose.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def __init__(self, depth, nFeat, increase=128, bn=False, resBlock=Residual, conv
self.bn = bn
self.resBlock = resBlock
self.convBlock = convBlock
# will execute when instantiate the Hourglass object, prepare network's Parameters:
# will execute when instantiate the Hourglass object, prepare network's parameters
self.hg = self._make_hour_glass()
self.downsample = nn.MaxPool2d(2, 2) # no learning parameters, can be used any times repeatedly
self.upsample = nn.Upsample(scale_factor=2, mode='nearest') # no learning parameters # FIXME: 改成反卷积?
Expand Down
2 changes: 1 addition & 1 deletion pytorch/pytorchcv/models/others/oth_ibppose1.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def __init__(self, depth, nFeat, increase=128, bn=False, resBlock=Residual, conv
self.bn = bn
self.resBlock = resBlock
self.convBlock = convBlock
# will execute when instantiate the Hourglass object, prepare network's Parameters:
# will execute when instantiate the Hourglass object, prepare network's parameters
self.hg = self._make_hour_glass()
self.downsample = nn.MaxPool2d(2, 2) # no learning parameters, can be used any times repeatedly
self.upsample = nn.Upsample(scale_factor=2, mode='nearest') # no learning parameters # FIXME: 改成反卷积?
Expand Down
2 changes: 1 addition & 1 deletion pytorch/pytorchcv/models/squeezenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def squeezeresnet_v1_0(**kwargs):

def squeezeresnet_v1_1(**kwargs):
"""
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer Parameters:
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer parameters
and <0.5MB model size,' https://arxiv.org/abs/1602.07360.
Parameters:
Expand Down
2 changes: 1 addition & 1 deletion tensorflow2/tf2cv/models/squeezenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def squeezeresnet_v1_0(**kwargs):

def squeezeresnet_v1_1(**kwargs):
"""
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer Parameters:
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer parameters
and <0.5MB model size,' https://arxiv.org/abs/1602.07360.
Parameters:
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_/tensorflowcv/models/squeezenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def squeezeresnet_v1_0(**kwargs):

def squeezeresnet_v1_1(**kwargs):
"""
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer Parameters:
SqueezeNet v1.1 model with residual connections from 'SqueezeNet: AlexNet-level accuracy with 50x fewer parameters
and <0.5MB model size,' https://arxiv.org/abs/1602.07360.
Parameters:
Expand Down

0 comments on commit e8b7d64

Please sign in to comment.