C# Class Encog.Neural.Networks.Training.TrainingSetScore

Calculate a score based on a training set. This class allows simulated annealing or genetic algorithms just as you would any other training set based training method.
Inheritance: ICalculateScore
ファイルを表示 Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
CalculateScore ( IMLRegression method ) : double

Calculate the score for the network.

TrainingSetScore ( IMLDataSet training ) : Encog.ML

Construct a training set score calculation.

Method Details

CalculateScore() public method

Calculate the score for the network.
public CalculateScore ( IMLRegression method ) : double
method IMLRegression The network to calculate for.
return double

TrainingSetScore() public method

Construct a training set score calculation.
public TrainingSetScore ( IMLDataSet training ) : Encog.ML
training IMLDataSet The training data to use.
return Encog.ML