Click or drag to resize
IActivation Interface
Interface implemented by perceptron activation functions.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public interface IActivation

The IActivation type exposes the following members.

Methods
  NameDescription
Public methodDerivative
Returns the value of the derivative of the activation function.
Public methodG
Returns the value of the activation function.
Top
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