|
DeltaRuleLearningRunEpoch Method
|
Runs learning epoch.
Namespace:
Accord.Neuro.Learning
Assembly:
Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntaxpublic double RunEpoch(
double[][] input,
double[][] output
)
Public Function RunEpoch (
input As Double()(),
output As Double()()
) As Double
Request Example
View SourceParameters
- input
- Type: SystemDouble
Array of input vectors. - output
- Type: SystemDouble
Array of output vectors.
Return Value
Type:
DoubleReturns summary learning error for the epoch. See
Run(Double, Double)
method for details about learning error calculation.
Implements
ISupervisedLearningRunEpoch(Double, Double)
RemarksThe method runs one learning epoch, by calling Run(Double, Double) method
for each vector provided in the input array.
See Also