Click or drag to resize
NetworkGetForecastGradient Method
Returns the derivatives of the outputs with respect to the Weights evaluated at x.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public abstract double[,] GetForecastGradient(
	double[] x
)

Parameters

x
Type: SystemDouble
A double array which specifies the input values at which the gradient is to be evaluated.

Return Value

Type: Double
A double array containing the gradient values. The value of gradient[i][j] is dy_i/dw_j, where y_i is the i-th output and w_j is the j-th weight.
See Also