Interface implemented by perceptron activation functions.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public interface IActivation
Visual Basic (Declaration)
Public Interface IActivation
Visual C++
public interface class IActivation

Remarks

Standard activation functions are defined as static members of this interface. New activation functions can be defined by implementing a method, g(double x), returning the value and a method, derivative(double x, double y), returning the derivative of g evaluated at x where y = g(x).

See Also