C# Класс Encog.Engine.Data.BasicEngineData

Наследование: IEngineData
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
BasicEngineData ( double input ) : System

Construct the object with only input. If this constructor is used, then unsupervised training is being used.

BasicEngineData ( double input, double ideal ) : System

Construct a BasicNeuralDataPair class with the specified input and ideal values.

CreatePair ( int inputSize, int idealSize ) : IEngineData

Create a new neural data pair object of the correct size for the neural network that is being trained. This object will be passed to the getPair method to allow the neural data pair objects to be copied to it.

ToString ( ) : System.String

Описание методов

BasicEngineData() публичный Метод

Construct the object with only input. If this constructor is used, then unsupervised training is being used.
public BasicEngineData ( double input ) : System
input double The input to the neural network.
Результат System

BasicEngineData() публичный Метод

Construct a BasicNeuralDataPair class with the specified input and ideal values.
public BasicEngineData ( double input, double ideal ) : System
input double The input to the neural network.
ideal double The expected results from the neural network.
Результат System

CreatePair() публичный статический Метод

Create a new neural data pair object of the correct size for the neural network that is being trained. This object will be passed to the getPair method to allow the neural data pair objects to be copied to it.
public static CreatePair ( int inputSize, int idealSize ) : IEngineData
inputSize int The size of the input data.
idealSize int The size of the ideal data.
Результат IEngineData

ToString() публичный Метод

public ToString ( ) : System.String
Результат System.String