call method

  1. @override
Tensor<Matrix> call(
  1. Tensor<Matrix> input
)
override

Applies the Sigmoid function element-wise to the input tensor.

Implementation

@override
Tensor<Matrix> call(Tensor<Matrix> input) {
  return sigmoidMatrix(input);
}