C# Class Encog.ML.Data.Buffer.BinaryDataLoader

This class is used, together with a CODEC, to move data to/from the Encog binary training file format. The same Encog binary files can be used on all Encog platforms. CODEC's are used to import/export with other formats, such as CSV.
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Binary2External ( String binaryFile ) : void

Convert an Encog binary file to an external form, such as CSV.

BinaryDataLoader ( IDataSetCODEC codec ) : System

Construct a loader with the specified CODEC.

External2Binary ( String binaryFile ) : void

Convert an external file format, such as CSV, to the Encog binary training format.

Method Details

Binary2External() public method

Convert an Encog binary file to an external form, such as CSV.
public Binary2External ( String binaryFile ) : void
binaryFile String THe binary file to use.
return void

BinaryDataLoader() public method

Construct a loader with the specified CODEC.
public BinaryDataLoader ( IDataSetCODEC codec ) : System
codec IDataSetCODEC The codec to use.
return System

External2Binary() public method

Convert an external file format, such as CSV, to the Encog binary training format.
public External2Binary ( String binaryFile ) : void
binaryFile String The binary file to create.
return void