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

Inheritance: IDataSetCODEC
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Close the codec.
public Close ( ) : void
Résultat void

PrepareRead() public méthode

Prepare to read.
public PrepareRead ( ) : void
Résultat void

PrepareWrite() public méthode

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.
Résultat void

Read() public méthode

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

SQLCODEC() public méthode

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.
Résultat System

Write() public méthode

public Write ( double input, double ideal, double significance ) : void
input double
ideal double
significance double
Résultat void