C# Класс Encog.Normalize.Target.NormalizationStorageNeuralDataSet

Store the normalized data to a neural data set.
Наследование: INormalizationStorage
Показать файл Открыть проект

Открытые методы

Метод Описание
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