C# 클래스 Encog.Util.Normalize.Target.NormalizationStorageMLDataSet

상속: INormalizationStorage
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
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.

메소드 상세

Close() 공개 메소드

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

NormalizationStorageMLDataSet() 공개 메소드

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

NormalizationStorageMLDataSet() 공개 메소드

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