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
/// Applies a 1D convolution over an input signal composed of several input planes.
121
121
/// </summary>
122
-
/// <param name="inputChannel">Number of channels in the input image</param>
123
-
/// <param name="outputChannel">Number of channels produced by the convolution</param>
122
+
/// <param name="in_channels">Number of channels in the input image</param>
123
+
/// <param name="out_channels">Number of channels produced by the convolution</param>
124
124
/// <param name="kernelSize">Size of the convolving kernel</param>
125
125
/// <param name="stride">Stride of the convolution. Default: 1</param>
126
126
/// <param name="padding">Zero-padding added to both sides of the input. padding=Valid is the same as no padding. padding=Same pads the input so the output has the shape as the input. </param>
127
127
/// <param name="dilation">Spacing between kernel elements. Default: 1</param>
128
-
/// <param name="paddingMode">'zeros', 'reflect', 'replicate' or 'circular'. Default: 'zeros'</param>
128
+
/// <param name="padding_mode">'zeros', 'reflect', 'replicate' or 'circular'. Default: 'zeros'</param>
129
129
/// <param name="groups">Number of blocked connections from input channels to output channels. Default: 1</param>
130
130
/// <param name="bias">If true, adds a learnable bias to the output. Default: true</param>
131
131
/// <param name="device">The desired device of the parameters and buffers in this module</param>
132
132
/// <param name="dtype">The desired floating point or complex dtype of the parameters and buffers in this module</param>
133
133
/// <returns>Tensor of shape (N,C_out,L_out)</returns>
0 commit comments