call method

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

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

Implementation

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