Skip to content

Commit

Permalink
Update pl_bolts/models/self_supervised/resnets.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
  • Loading branch information
ananyahjha93 and Borda authored Nov 16, 2020
1 parent 3e2b8f3 commit 47e8fdf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pl_bolts/models/self_supervised/resnets.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,15 @@ def __init__(
self,
block,
layers,
num_classes=1000,
zero_init_residual=False,
groups=1,
width_per_group=64,
num_classes: int = 1000,
zero_init_residual: bool = False,
groups: int = 1,
width_per_group: int = 64,
replace_stride_with_dilation=None,
norm_layer=None,
return_all_feature_maps=False,
first_conv=True,
maxpool1=True,
return_all_feature_maps: bool = False,
first_conv: bool = True,
maxpool1: bool = True,
):
super(ResNet, self).__init__()
if norm_layer is None:
Expand Down

0 comments on commit 47e8fdf

Please sign in to comment.