Expand description
Specialized operations for convolutional neural networks
This module provides efficient implementations of specialized operations that are commonly used in convolutional neural networks, such as im2col/col2im, efficient convolution algorithms, and other related operations.
Functionsยง
- col2im
- Convert a column matrix back to an input tensor using the col2im algorithm
- compute_
conv_ indices - Compute the indices for batch matrix multiplication in a convolutional layer
- conv2d_
backward_ bias - Apply backward pass of convolution operation for bias gradient
- conv2d_
backward_ input - Apply backward pass of convolution operation for input gradient
- conv2d_
backward_ kernel - Apply backward pass of convolution operation for kernel gradient
- conv2d_
im2col - Apply convolution operation using im2col and matrix multiplication
- conv_
transpose2d - Apply 2D transposed convolution (deconvolution) operation
- im2col
- Extract patches from an input tensor using the im2col algorithm
- max_
pool2d - Perform max pooling operation on a 4D input tensor
- max_
pool2d_ backward - Perform the backward pass of max pooling operation