Click or drag to resize
Accord.NET (logo)

ElasticNetworkLearningRunEpoch Method

Runs learning epoch.

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

Parameters

input
Type: SystemDouble
Array of input vectors.

Return Value

Type: Double
Returns summary learning error for the epoch. See Run(Double) method for details about learning error calculation.

Implements

IUnsupervisedLearningRunEpoch(Double)
Remarks

The method runs one learning epoch, by calling Run(Double) method for each vector provided in the input array.

See Also