C# Class Encog.Util.Normalize.Target.NormalizationStorageMLDataSet

Inheritance: INormalizationStorage
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
Close ( ) : void

Not needed for this storage type.

NormalizationStorageMLDataSet ( IMLDataSet dataset ) : System

Construct a normalized neural storage class to hold data.

NormalizationStorageMLDataSet ( int inputCount, int idealCount ) : System

Construct a new NeuralDataSet based on the parameters specified.

Open ( ) : void

Not needed for this storage type.

Write ( double data, int inputCount ) : void

Write an array.

Method Details

Close() public méthode

Not needed for this storage type.
public Close ( ) : void
Résultat void

NormalizationStorageMLDataSet() public méthode

Construct a normalized neural storage class to hold data.
public NormalizationStorageMLDataSet ( IMLDataSet dataset ) : System
dataset IMLDataSet The data set to store to. This uses an existing data set.
Résultat System

NormalizationStorageMLDataSet() public méthode

Construct a new NeuralDataSet based on the parameters specified.
public NormalizationStorageMLDataSet ( int inputCount, int idealCount ) : System
inputCount int The input count.
idealCount int The output count.
Résultat System

Open() public méthode

Not needed for this storage type.
public Open ( ) : void
Résultat void

Write() public méthode

Write an array.
public Write ( double data, int inputCount ) : void
data double The data to write.
inputCount int How much of the data is input.
Résultat void