AForge.Neuro.Learning.EvolutionaryLearning.Run C# (CSharp) Method

Run() public method

Runs learning iteration.
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 method instead.
The method is not implemented by design.
public Run ( double input, double output ) : double
input double Input vector.
output double Desired output vector.
return double
        public double Run( double[] input, double[] output )
        {
            throw new NotImplementedException( "The method is not implemented by design." );
        }