|
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
)
Public Function RunEpoch (
inputBatches As Double()()(),
outputBatches As Double()()()
) As Double
Request Example
View SourceParameters
- 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