C# 클래스 Encog.ML.Data.Buffer.CODEC.SQLCODEC

상속: IDataSetCODEC
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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