|
DeepNeuralNetworkLearning. RunEpoch 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
Syntaxpublic double RunEpoch(
double[][][] inputBatches,
double[][][] outputBatches
)
Public Function RunEpoch (
inputBatches As Double()()(),
outputBatches As Double()()()
) As Double
Request Example
View SourceParameters
- inputBatches
- Type:System.Double[][][]
Array of input batches. - outputBatches
- Type:System.Double[][][]
Array of corresponding output batches.
Return Value
Type:
Double
Returns sum of learning errors.
See Also