Click or drag to resize

ActivationFuncSigmoid Class

Implementation of the Sigmoid function.
Inheritance Hierarchy
SystemObject
  RavingBots.MagicGestures.AI.Neural.ClassicActivationFunc
    RavingBots.MagicGestures.AI.Neural.ClassicActivationFuncSigmoid

Namespace:  RavingBots.MagicGestures.AI.Neural.Classic
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public class FuncSigmoid : ActivationFunc

The ActivationFuncSigmoid type exposes the following members.

Constructors
  NameDescription
Public methodActivationFuncSigmoid
Construct a new instance with the given β value.
Top
Methods
Fields
  NameDescription
Public fieldBeta
The scaling factor β of the input.
Top
Remarks
Implements the f(x) = 1 / (1 + e^(-x * β)) function. The output is in range [0, 1].
See Also