Skip to content

Commit 48de887

Browse files
committed
Fixed copy-paste error in docstrings.
1 parent 929457f commit 48de887

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/bn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
class TestConv2d(nn.Module):
14-
"""Module for Dense conversion testing
14+
"""Module for BatchNorm2d conversion testing
1515
"""
1616

1717
def __init__(self, inp=10, out=16, kernel_size=3, bias=True):

tests/conv2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
class TestConv2d(nn.Module):
14-
"""Module for Dense conversion testing
14+
"""Module for Conv2d conversion testing
1515
"""
1616

1717
def __init__(self, inp=10, out=16, kernel_size=3, bias=True):

tests/conv2d_dilation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
class TestConv2d(nn.Module):
14-
"""Module for Dense conversion testing
14+
"""Module for Conv2d conversion testing
1515
"""
1616

1717
def __init__(self, inp=10, out=16, kernel_size=3, dilation=1, bias=True):

0 commit comments

Comments
 (0)