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

Inheritance: INormalizationStorage
Datei anzeigen Open project: encog/encog-silverlight-core

Public Methods

Method 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 method

Not needed for this storage type.
public Close ( ) : void
return void

NormalizationStorageMLDataSet() public method

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.
return System

NormalizationStorageMLDataSet() public method

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.
return System

Open() public method

Not needed for this storage type.
public Open ( ) : void
return void

Write() public method

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.
return void