C# Класс Encog.ML.Data.Buffer.CODEC.SQLCODEC

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

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

Метод Описание
Close ( ) : void

Close the codec.

PrepareRead ( ) : void

Prepare to read.

PrepareWrite ( int recordCount, int inputSize, int idealSize ) : void

Prepare to write.

Read ( double input, double ideal, double &significance ) : bool

Read a record.

SQLCODEC ( String sql, int inputSize, int idealSize, String connectString ) : System

Create a SQL neural data set.

Write ( double input, double ideal, double significance ) : void

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

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

Close the codec.
public Close ( ) : void
Результат void

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

Prepare to read.
public PrepareRead ( ) : void
Результат void

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

Prepare to write.
public PrepareWrite ( int recordCount, int inputSize, int idealSize ) : void
recordCount int The record count.
inputSize int The input size.
idealSize int The ideal size.
Результат void

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

Read a record.
public Read ( double input, double ideal, double &significance ) : bool
input double The input data.
ideal double The ideal data.
significance double
Результат bool

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

Create a SQL neural data set.
public SQLCODEC ( String sql, int inputSize, int idealSize, String connectString ) : System
sql String The SQL to execute.
inputSize int The size of the input data being read.
idealSize int The size of the ideal output data being read.
connectString String The connection string.
Результат System

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

public Write ( double input, double ideal, double significance ) : void
input double
ideal double
significance double
Результат void