C# 클래스 Encog.Neural.Networks.Training.Strategy.StopTrainingStrategy

This strategy will indicate once training is no longer improving the neural network by a specified amount, over a specified number of cycles. This allows the program to automatically determine when to stop training.
상속: IStrategy
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
Init ( ITrain train ) : void

Initialize this strategy.

PostIteration ( ) : void

Called just after a training iteration.

PreIteration ( ) : void

Called just before a training iteration.

ShouldStop ( ) : bool

True if training should stop.

StopTrainingStrategy ( ) : System

Construct the strategy with default options.

StopTrainingStrategy ( double minImprovement, int toleratedCycles ) : System

Construct the strategy with the specified parameters.

메소드 상세

Init() 공개 메소드

Initialize this strategy.
public Init ( ITrain train ) : void
train ITrain The training algorithm.
리턴 void

PostIteration() 공개 메소드

Called just after a training iteration.
public PostIteration ( ) : void
리턴 void

PreIteration() 공개 메소드

Called just before a training iteration.
public PreIteration ( ) : void
리턴 void

ShouldStop() 공개 메소드

True if training should stop.
public ShouldStop ( ) : bool
리턴 bool

StopTrainingStrategy() 공개 메소드

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

StopTrainingStrategy() 공개 메소드

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.
리턴 System