| IActivationDerivative Method |
Returns the value of the derivative of the activation function.
Namespace: Imsl.DataMining.NeuralAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxdouble Derivative(
double x,
double y
)
Function Derivative (
x As Double,
y As Double
) As Double
double Derivative(
double x,
double y
)
abstract Derivative :
x : float *
y : float -> float
Parameters
- x
- Type: SystemDouble
A double which specifies the point at which the activation
function is to be evaluated.
- y
- Type: SystemDouble
A double which specifies y = g(x), the value of the
activation function at x.
Return Value
Type:
Double
A
double containing the value of the derivative of
the activation function at
x.
Remarksy is not mathematically required, but can sometimes
be used to more quickly compute the derivative.
See Also