Skip to content

Commit 7f00c58

Browse files
committed
typo
1 parent 9213da7 commit 7f00c58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

model_constructor/xresnet.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ def forward(self, x):
4646

4747

4848
def xresnet18(**kwargs):
49-
"""Constructs a xresnet-18 model. """
49+
"""Constructs xresnet18 model. """
5050
return Net(stem_sizes=[32, 32], block=XResBlock, blocks=[2, 2, 2, 2], expansion=1, **kwargs)
5151

5252

5353
def xresnet34(**kwargs):
54-
"""Constructs axresnet-34 model. """
54+
"""Constructs xresnet34 model. """
5555
return Net(stem_sizes=[32, 32], block=XResBlock, blocks=[3, 4, 6, 3], expansion=1, **kwargs)
5656

5757

5858
def xresnet50(**kwargs):
59-
"""Constructs axresnet-34 model. """
59+
"""Constructs xresnet50 model. """
6060
return Net(stem_sizes=[32, 32], block=XResBlock, blocks=[3, 4, 6, 3], expansion=4, **kwargs)

0 commit comments

Comments
 (0)