Updated default argument for stride to 1 in Conv2d() in the docstring (#22)

This commit is contained in:
Markus Enzweiler 2023-12-06 16:17:58 +01:00 committed by GitHub
parent 36b245b287
commit 2ffaee0c0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,7 +78,7 @@ class Conv2d(Module):
out_channels (int): The number of output channels.
kernel_size (int or tuple): The size of the convolution filters.
stride (int or tuple, optional): The size of the stride when
applying the filter. Default: 0.
applying the filter. Default: 1.
padding (int or tuple, optional): How many positions to 0-pad
the input with. Default: 0.
bias (bool, optional): If ``True`` add a learnable bias to the