Interface ActivationSigmoid<T extends Tensor>

All Superinterfaces:
Function<T>
All Known Implementing Classes:
ActivationSigmoid_F32, ActivationSigmoid_F64

public interface ActivationSigmoid<T extends Tensor>
extends Function<T>
The sigmoid is defined as:

σ(x) = 1/(1 + e-x)

It has a range from 0 to 1. It converges towards one for positive numbers and zero for negative numbers.