Public Instance Constructors

SigmoidActivationFunction Constructor

Public Instance Properties

Beta Get or set the beta parameter of the function ( beta must be positive )
Name Get the name of the activation function

Public Instance Methods

Equals (inherited from Object)Select the method name to go to the Microsoft documentation.
GetHashCode (inherited from Object)Select the method name to go to the Microsoft documentation.
GetType (inherited from Object)Select the method name to go to the Microsoft documentation.
Output
                            1
            f(x) = -----------------   beta > 0
                    1 + e^(-beta*x)
            
OutputPrime
            f'(x) = beta * f(x) * ( 1 - f(x) )
            
ToString (inherited from Object)Select the method name to go to the Microsoft documentation.

Protected Instance Fields

beta The beta parameter of the sigmoid

Protected Instance Methods

Finalize (inherited from Object)Select the method name to go to the Microsoft documentation.
MemberwiseClone (inherited from Object)Select the method name to go to the Microsoft documentation.

See Also

SigmoidActivationFunction Class | NeuralNetwork Namespace