You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
Thank you for sharing the code of Graph WaveNet.
I have some confusion about the conv1d function using in your code.
Why use conv1d in gate_convs and how to understand that the kernel_size is a tuple (1, 2)?
Thanks
The text was updated successfully, but these errors were encountered:
Passing a (1,2) kernel to conv1d seems the same as pass a (1,2) kernel to conv2d as they trigger the same underlying computation.. (however pass a kernel=2 to conv1d and conv2d will be different as conv2d will repeat it 2 times)
It will be great if the author can answer here about the particular reason to choose conv1d for gate_convs while choosing conv2d for filter_convs...
Hello,
Thank you for sharing the code of Graph WaveNet.
I have some confusion about the conv1d function using in your code.
Why use conv1d in gate_convs and how to understand that the kernel_size is a tuple (1, 2)?
Thanks
The text was updated successfully, but these errors were encountered: