C# Класс 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.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

Binary2External() публичный Метод

Convert an Encog binary file to an external form, such as CSV.
public Binary2External ( String binaryFile ) : void
binaryFile String THe binary file to use.
Результат void

BinaryDataLoader() публичный Метод

Construct a loader with the specified CODEC.
public BinaryDataLoader ( IDataSetCODEC codec ) : System
codec IDataSetCODEC The codec to use.
Результат System

External2Binary() публичный Метод

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.
Результат void