|
EvolutionaryLearningRun Method
|
Runs learning iteration.
Namespace:
Accord.Neuro.Learning
Assembly:
Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax public double Run(
double[] input,
double[] output
)
Public Function Run (
input As Double(),
output As Double()
) As Double
Request Example
View SourceParameters
- input
- Type: SystemDouble
Input vector. - output
- Type: SystemDouble
Desired output vector.
Return Value
Type:
DoubleReturns learning error.
Implements
ISupervisedLearningRun(Double, Double)Exceptions Exception | Condition |
---|
NotImplementedException | The method is not implemented by design. |
Remarks Note |
---|
The method is not implemented, since evolutionary learning algorithm is global
and requires all inputs/outputs in order to run its one epoch. Use RunEpoch(Double, Double)
method instead. |
See Also