call method

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

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

This method calls the underlying sigmoid operation, which handles both the forward calculation and the connection to the autograd graph for the backward pass.

Implementation

@override
Tensor<Vector> call(Tensor<Vector> input) {
  return sigmoid(input);
}