C# Class Encog.ML.Train.Strategy.StopTrainingStrategy

Inheritance: IStrategy, IEndTrainingStrategy
Mostra file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Init ( IMLTrain train ) : void

PostIteration ( ) : void

PreIteration ( ) : void

ShouldStop ( ) : bool

StopTrainingStrategy ( ) : System

Construct the strategy with default options.

StopTrainingStrategy ( double minImprovement, int toleratedCycles ) : System

Construct the strategy with the specified parameters.

Method Details

Init() public method

public Init ( IMLTrain train ) : void
train IMLTrain
return void

PostIteration() public method

public PostIteration ( ) : void
return void

PreIteration() public method

public PreIteration ( ) : void
return void

ShouldStop() public method

public ShouldStop ( ) : bool
return bool

StopTrainingStrategy() public method

Construct the strategy with default options.
public StopTrainingStrategy ( ) : System
return System

StopTrainingStrategy() public method

Construct the strategy with the specified parameters.
public StopTrainingStrategy ( double minImprovement, int toleratedCycles ) : System
minImprovement double The minimum accepted improvement.
toleratedCycles int The number of cycles to tolerate before stopping.
return System