Possible typo in Conv module #2053
Unanswered
ozencgungor
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
There seems to be a small typo in the docstring of the abstract
_Conv
module. It reads:But when I try to pass an integer to the
kernel_size
argument for a 1D Convolution acting on data of shape(N, M, F)
where in channels last format as in the code example below:I get the error
The kernel size must be specified as a tuple/list of integers (eg.: [3, 3]).
. Everything works fine if i setkernel_size=(4**self.p, )
. I was wondering if this is a simple typo in the_Conv
module docstring.Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions