| ggml_conv_2d_dw | R Documentation |
Applies depthwise 2D convolution: each input channel is convolved with its own kernel. Uses the im2col-based path.
ggml_conv_2d_dw(
ctx,
a,
b,
s0 = 1L,
s1 = 1L,
p0 = 0L,
p1 = 0L,
d0 = 1L,
d1 = 1L
)
ctx |
GGML context |
a |
Convolution kernel tensor |
b |
Input data tensor |
s0, s1 |
Strides along dim 0 and 1 (default 1) |
p0, p1 |
Padding along dim 0 and 1 (default 0) |
d0, d1 |
Dilation along dim 0 and 1 (default 1) |
Convolved tensor
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.