Click or drag to resize
Activation Structure

[Missing <summary> documentation for "T:Imsl.DataMining.Neural.Activation"]

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
[SerializableAttribute]
public struct Activation

The Activation type exposes the following members.

Methods
  NameDescription
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Fields
  NameDescription
Public fieldStatic memberLinear
The identity activation function, g(x) = x.
Public fieldStatic memberLogistic
The logistic activation function, g(x)=\frac{1}{1+e^{-x}}.
Public fieldStatic memberLogisticTable
The logistic activation function computed using a table.
Public fieldStatic memberSoftmax
The softmax activation function.

            {\rm{softmax}}_{\rm{i}}=\frac{{{\mathop{\rm e}\nolimits} ^{Z_i } }}
            {{\sum\limits_{j = 1}^C {e^{Z_j } } }}
.
Public fieldStatic memberSquash
The squash activation function, g(x)=\frac{x}{1+|x|}
Public fieldStatic memberTanh
The hyperbolic tangent activation function, g(x)=\tanh{x}=
            \frac{e^x-e^{-x}}{e^x+e^{-x}}.
Top
See Also