public class KFoldIterator extends Object implements DataSetIterator
| Modifier and Type | Field and Description |
|---|---|
protected DataSetPreProcessor |
preProcessor |
| Constructor and Description |
|---|
KFoldIterator(DataSet singleFold) |
KFoldIterator(int k,
DataSet singleFold)
Create an iterator given the dataset and a value of k (optional, defaults to 10)
If number of samples in the dataset is not a multiple of k, the last fold will have less samples with the rest having the same number of samples.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
asyncSupported()
Does this DataSetIterator support asynchronous prefetching of multiple DataSet objects?
Most DataSetIterators do, but in some cases it may not make sense to wrap this iterator in an
iterator that does asynchronous prefetching.
|
int |
batch()
The number of examples in every fold, except the last if totalexamples % k !=0
|
int |
cursor()
cursor value of zero indicates no iterations and the very first fold will be held out as test
cursor value of 1 indicates the the next() call will return all but second fold which will be held out as test
curson value of k-1 indicates the next() call will return all but the last fold which will be held out as test
|
List<String> |
getLabels()
Get dataset iterator record reader labels
|
DataSetPreProcessor |
getPreProcessor()
Returns preprocessors, if defined
|
boolean |
hasNext() |
int |
inputColumns()
Input columns for the dataset
|
int |
lastBatch()
The number of examples in the last fold
if totalexamples % k == 0 same as the number of examples in every other fold
|
DataSet |
next() |
DataSet |
next(int num)
Like the standard next method but allows a
customizable number of examples returned
|
int |
numExamples()
Total number of examples in the dataset
|
void |
remove() |
void |
reset()
Shuffles the dataset and resets to the first fold
|
boolean |
resetSupported()
Is resetting supported by this DataSetIterator? Many DataSetIterators do support resetting,
but some don't
|
void |
setPreProcessor(DataSetPreProcessor preProcessor)
Set a pre processor
|
DataSet |
testFold() |
int |
totalExamples()
Returns total number of examples in the dataset (all k folds)
|
int |
totalOutcomes()
The number of labels for the dataset
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingprotected DataSetPreProcessor preProcessor
public KFoldIterator(DataSet singleFold)
public KFoldIterator(int k,
DataSet singleFold)
k - number of folds (optional, defaults to 10)singleFold - DataSet to split into k foldspublic DataSet next(int num) throws UnsupportedOperationException
DataSetIteratornext in interface DataSetIteratornum - the number of examplesUnsupportedOperationExceptionpublic int totalExamples()
totalExamples in interface DataSetIteratorpublic int inputColumns()
DataSetIteratorinputColumns in interface DataSetIteratorpublic int totalOutcomes()
DataSetIteratortotalOutcomes in interface DataSetIteratorpublic boolean resetSupported()
DataSetIteratorresetSupported in interface DataSetIteratorpublic boolean asyncSupported()
DataSetIteratorasyncSupported in interface DataSetIteratorpublic void reset()
reset in interface DataSetIteratorpublic int batch()
batch in interface DataSetIteratorpublic int lastBatch()
public int cursor()
cursor in interface DataSetIteratorpublic int numExamples()
DataSetIteratornumExamples in interface DataSetIteratorpublic void setPreProcessor(DataSetPreProcessor preProcessor)
DataSetIteratorsetPreProcessor in interface DataSetIteratorpreProcessor - a pre processor to setpublic DataSetPreProcessor getPreProcessor()
DataSetIteratorgetPreProcessor in interface DataSetIteratorpublic List<String> getLabels()
DataSetIteratorgetLabels in interface DataSetIteratorpublic DataSet testFold()
Copyright © 2018. All rights reserved.