C# Class Encog.Neural.Networks.Training.Strategy.Greedy

A simple greedy strategy. If the last iteration did not improve training, then discard it. Care must be taken with this strategy, as sometimes a training algorithm may need to temporarily decrease the error level before improving it.
Inheritance: IStrategy
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
Init ( ITrain train ) : void

Initialize this strategy.

PostIteration ( ) : void

Called just after a training iteration.

PreIteration ( ) : void

Called just before a training iteration.

Method Details

Init() public méthode

Initialize this strategy.
public Init ( ITrain train ) : void
train ITrain The training algorithm.
Résultat void

PostIteration() public méthode

Called just after a training iteration.
public PostIteration ( ) : void
Résultat void

PreIteration() public méthode

Called just before a training iteration.
public PreIteration ( ) : void
Résultat void