C# Class Encog.Engine.Data.BasicEngineDataSet

Inheritance: IEngineIndexableSet
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode Description
Add ( IEngineData inputData ) : void

Add a neural data pair to the list.

Add ( double d ) : void

Add input to the training set with no expected output. This is used for unsupervised training.

Add ( double inputData, double idealData ) : void

Add input and expected output. This is used for supervised training.

BasicEngineDataSet ( ) : System

Default constructor.

BasicEngineDataSet ( IList data ) : System

Construct a data set from an already created list. Mostly used to duplicate this class.

BasicEngineDataSet ( double input, double ideal ) : System

Construct a data set from an input and idea array.

GetRecord ( long index, IEngineData pair ) : void

Get a record by index into the specified pair.

OpenAdditional ( ) : IEngineIndexableSet

Create an additional data set. It will use the same list.

Method Details

Add() public méthode

Add a neural data pair to the list.
public Add ( IEngineData inputData ) : void
inputData IEngineData A NeuralDataPair object that contains both input and idealdata.
Résultat void

Add() public méthode

Add input to the training set with no expected output. This is used for unsupervised training.
public Add ( double d ) : void
d double The input to be added to the training set.
Résultat void

Add() public méthode

Add input and expected output. This is used for supervised training.
public Add ( double inputData, double idealData ) : void
inputData double The input data to train on.
idealData double The ideal data to use for training.
Résultat void

BasicEngineDataSet() public méthode

Default constructor.
public BasicEngineDataSet ( ) : System
Résultat System

BasicEngineDataSet() public méthode

Construct a data set from an already created list. Mostly used to duplicate this class.
public BasicEngineDataSet ( IList data ) : System
data IList The data to use.
Résultat System

BasicEngineDataSet() public méthode

Construct a data set from an input and idea array.
public BasicEngineDataSet ( double input, double ideal ) : System
input double The input into the neural network for training.
ideal double The ideal output for training.
Résultat System

GetRecord() public méthode

Get a record by index into the specified pair.
public GetRecord ( long index, IEngineData pair ) : void
index long The index to read.
pair IEngineData The pair to hold the data.
Résultat void

OpenAdditional() public méthode

Create an additional data set. It will use the same list.
public OpenAdditional ( ) : IEngineIndexableSet
Résultat IEngineIndexableSet