TensorLinearOperator extension
Methods
-
conv(
{required Tensor< TypedData> kernel, int strideH = 1, int strideW = 1, int padH = 0, int padW = 0, int dilationH = 1, int dilationW = 1}) → Future<Tensor< TypedData> > -
Available on Tensor<
Performs a convolution supporting dilation and multi-channel input.TypedData> , provided by the TensorLinearOperator extension -
conv2d(
Tensor< TypedData> kernel) → Future<Tensor< TypedData> > -
Available on Tensor<
Performs a 2D convolution on a 2D input tensor using a 2D kernel.TypedData> , provided by the TensorLinearOperator extension -
matMul(
Tensor< TypedData> other) → Future<Tensor< TypedData> > -
Available on Tensor<
Matrix multiplication (dot product) for 2D tensors or batched matrix multiplication for higher dimensions.TypedData> , provided by the TensorLinearOperator extension