C# 클래스 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.
상속: IIndexable
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Add() 공개 메소드

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

Add() 공개 메소드

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

Add() 공개 메소드

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

Close() 공개 메소드

Close the dataset.
public Close ( ) : void
리턴 void

Fold() 공개 메소드

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

FoldedDataSet() 공개 메소드

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

GetEnumerator() 공개 메소드

Get an enumberator.
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

GetRecord() 공개 메소드

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

OpenAdditional() 공개 메소드

Open an additional dataset.
public OpenAdditional ( ) : IEngineIndexableSet
리턴 IEngineIndexableSet