public class KFoldIterator extends Object implements DataSetIterator
| Modifier and Type | Field and Description |
|---|---|
protected DataSetPreProcessor |
preProcessor |
| Constructor and Description |
|---|
KFoldIterator(DataSet allData) |
KFoldIterator(int k,
DataSet allData)
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
|
List<String> |
getLabels()
Get dataset iterator class labels, if any.
|
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
|
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 allData)
public KFoldIterator(int k,
DataSet allData)
k - number of folds (optional, defaults to 10)allData - DataSet to split into k foldspublic DataSet next(int num) throws UnsupportedOperationException
DataSetIteratornext in interface DataSetIteratornum - the number of examplesUnsupportedOperationExceptionpublic int totalExamples()
public 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 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.