C# Class Encog.ML.Data.Buffer.CODEC.SQLCODEC

Inheritance: IDataSetCODEC
Exibir arquivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
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

Method Details

Close() public method

Close the codec.
public Close ( ) : void
return void

PrepareRead() public method

Prepare to read.
public PrepareRead ( ) : void
return void

PrepareWrite() public method

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.
return void

Read() public method

Read a record.
public Read ( double input, double ideal, double &significance ) : bool
input double The input data.
ideal double The ideal data.
significance double
return bool

SQLCODEC() public method

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.
return System

Write() public method

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