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
Datei anzeigen Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method 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 method

Not supported.
public Add ( INeuralData data1 ) : void
data1 INeuralData Not used.
return void

Add() public method

Not supported.
public Add ( INeuralData inputData, INeuralData idealData ) : void
inputData INeuralData Not used.
idealData INeuralData Not used.
return void

Add() public method

Not supported.
public Add ( INeuralDataPair inputData ) : void
inputData INeuralDataPair Not used.
return void

Close() public method

Close the dataset.
public Close ( ) : void
return void

Fold() public method

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

FoldedDataSet() public method

Create a folded dataset.
public FoldedDataSet ( IIndexable underlying ) : System
underlying IIndexable The underlying folded dataset.
return System

GetEnumerator() public method

Get an enumberator.
public GetEnumerator ( ) : IEnumerator
return IEnumerator

GetRecord() public method

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

OpenAdditional() public method

Open an additional dataset.
public OpenAdditional ( ) : IEngineIndexableSet
return IEngineIndexableSet