C# Class Encog.Neural.Data.Folded.FoldedDataSet

A folded data set allows you to "fold" the data into several equal(or nearly equal) datasets. You then have the ability to select which fold the dataset will process. This is very useful for crossvalidation. This dataset works off of an underlying dataset. By default there are no folds (fold size 1). Call the fold method to create more folds.
Inheritance: IIndexable
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
Add ( INeuralData data1 ) : void

Not supported.

Add ( INeuralData inputData, INeuralData idealData ) : void

Not supported.

Add ( INeuralDataPair inputData ) : void

Not supported.

Close ( ) : void

Close the dataset.

Fold ( int numFolds ) : void

Fold the dataset. Must be done before the dataset is used.

FoldedDataSet ( IIndexable underlying ) : System

Create a folded dataset.

GetEnumerator ( ) : IEnumerator

Get an enumberator.

GetRecord ( long index, IEngineData pair ) : void

Get a record.

OpenAdditional ( ) : IEngineIndexableSet

Open an additional dataset.

Method Details

Add() public méthode

Not supported.
public Add ( INeuralData data1 ) : void
data1 INeuralData Not used.
Résultat void

Add() public méthode

Not supported.
public Add ( INeuralData inputData, INeuralData idealData ) : void
inputData INeuralData Not used.
idealData INeuralData Not used.
Résultat void

Add() public méthode

Not supported.
public Add ( INeuralDataPair inputData ) : void
inputData INeuralDataPair Not used.
Résultat void

Close() public méthode

Close the dataset.
public Close ( ) : void
Résultat void

Fold() public méthode

Fold the dataset. Must be done before the dataset is used.
public Fold ( int numFolds ) : void
numFolds int The number of folds.
Résultat void

FoldedDataSet() public méthode

Create a folded dataset.
public FoldedDataSet ( IIndexable underlying ) : System
underlying IIndexable The underlying folded dataset.
Résultat System

GetEnumerator() public méthode

Get an enumberator.
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

GetRecord() public méthode

Get a record.
public GetRecord ( long index, IEngineData pair ) : void
index long The index.
pair IEngineData The record.
Résultat void

OpenAdditional() public méthode

Open an additional dataset.
public OpenAdditional ( ) : IEngineIndexableSet
Résultat IEngineIndexableSet