Click or drag to resize
Accord.NET (logo)

LevenbergMarquardtLearningRunEpoch Method

Runs a single learning epoch.

Namespace:  Accord.Neuro.Learning
Assembly:  Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax
public double RunEpoch(
	double[][] input,
	double[][] output
)
Request Example View Source

Parameters

input
Type: SystemDouble
Array of input vectors.
output
Type: SystemDouble
Array of output vectors.

Return Value

Type: Double
Returns summary learning error for the epoch.

Implements

ISupervisedLearningRunEpoch(Double, Double)
Remarks

The method runs one learning epoch, by calling running necessary iterations of the Levenberg Marquardt to achieve an error decrease.

See Also