C# Class Encog.Neural.Data.Buffer.CODEC.NeuralDataSetCODEC

A CODEC that works with the NeuralDataSet class.
Inheritance: IDataSetCODEC
ファイルを表示 Open project: encog/encog-silverlight-core

Public Methods

Method Description
Close ( ) : void
NeuralDataSetCODEC ( INeuralDataSet dataset ) : System

Construct a CODEC.

PrepareRead ( ) : void
PrepareWrite ( int recordCount, int inputSize, int idealSize ) : void
Read ( double input, double ideal ) : bool
Write ( double input, double ideal ) : void

Method Details

Close() public method

public Close ( ) : void
return void

NeuralDataSetCODEC() public method

Construct a CODEC.
public NeuralDataSetCODEC ( INeuralDataSet dataset ) : System
dataset INeuralDataSet The dataset to use.
return System

PrepareRead() public method

public PrepareRead ( ) : void
return void

PrepareWrite() public method

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

Read() public method

public Read ( double input, double ideal ) : bool
input double
ideal double
return bool

Write() public method

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