C# Класс Encog.ML.Data.Basic.BasicMLDataPair

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

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

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

Construct a data pair that only includes input. (unsupervised)

BasicMLDataPair ( IMLData input, IMLData ideal ) : System

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

Clone ( ) : object

Clone this object.

CreatePair ( int inputSize, int idealSize ) : IMLDataPair

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 ( ) : string

Convert object to a string.

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

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

Construct a data pair that only includes input. (unsupervised)
public BasicMLDataPair ( IMLData input ) : System
input IMLData The input data.
Результат System

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

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

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

Clone this object.
public Clone ( ) : object
Результат object

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 ) : IMLDataPair
inputSize int The size of the input data.
idealSize int The size of the ideal data.
Результат IMLDataPair

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

Convert object to a string.
public ToString ( ) : string
Результат string