Click or drag to resize
Accord.NET (logo)

DeepNeuralNetworkLearningRunEpoch Method (Double, Double)

Runs a single learning epoch using multiple mini-batches to improve speed.

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

Parameters

inputBatches
Type: SystemDouble
Array of input batches.
outputBatches
Type: SystemDouble
Array of corresponding output batches.

Return Value

Type: Double
Returns sum of learning errors.
See Also