C# 클래스 Encog.Normalize.Target.NormalizationStorageNeuralDataSet

Store the normalized data to a neural data set.
상속: INormalizationStorage
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
Close ( ) : void

Not needed for this storage type.

NormalizationStorageNeuralDataSet ( INeuralDataSet dataset ) : System

Construct a normalized neural storage class to hold data.

NormalizationStorageNeuralDataSet ( 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.

메소드 상세

Close() 공개 메소드

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

NormalizationStorageNeuralDataSet() 공개 메소드

Construct a normalized neural storage class to hold data.
public NormalizationStorageNeuralDataSet ( INeuralDataSet dataset ) : System
dataset INeuralDataSet The data set to store to. This uses an existing data set.
리턴 System

NormalizationStorageNeuralDataSet() 공개 메소드

Construct a new NeuralDataSet based on the parameters specified.
public NormalizationStorageNeuralDataSet ( int inputCount, int idealCount ) : System
inputCount int The input count.
idealCount int The output count.
리턴 System

Open() 공개 메소드

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

Write() 공개 메소드

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