Click or drag to resize
Accord.NET (logo)

IActivationFunction Interface

Activation function interface.

Namespace:  Accord.Neuro
Assembly:  Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax
public interface IActivationFunction
Request Example View Source

The IActivationFunction type exposes the following members.

Methods
  NameDescription
Public methodDerivative
Calculates function derivative.
Public methodDerivative2
Calculates function derivative.
Public methodFunction
Calculates function value.
Top
Remarks
All activation functions, which are supposed to be used with neurons, which calculate their output as a function of weighted sum of their inputs, should implement this interfaces.
See Also