We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d2080 commit f8e89fbCopy full SHA for f8e89fb
torch/nn/functional.py
@@ -53,7 +53,7 @@ def conv1d(input, weight, bias=None, stride=1, padding=0, dilation=1,
53
Examples:
54
>>> filters = autograd.Variable(torch.randn(33, 16, 3))
55
>>> inputs = autograd.Variable(torch.randn(20, 16, 50))
56
- >>> F.conv1d(inputs)
+ >>> F.conv1d(inputs, filters)
57
"""
58
f = ConvNd(_single(stride), _single(padding), _single(dilation), False,
59
_single(0), groups)
0 commit comments