Example usage for Java org.deeplearning4j.datasets.datavec RecordReaderDataSetIterator fields, constructors, methods, implement or subclass
The text is from its open source code.
RecordReaderDataSetIterator(RecordReader recordReader, int batchSize, int labelIndex, int numPossibleLabels) Main constructor for classification. | |
RecordReaderDataSetIterator(RecordReader recordReader, int batchSize, int labelIndex, int numPossibleLabels, int maxNumBatches) Constructor for classification, where the maximum number of returned batches is limited to the specified value | |
RecordReaderDataSetIterator(RecordReader recordReader, int batchSize, int labelIndexFrom, int labelIndexTo, boolean regression) Main constructor for multi-label regression (i.e., regression with multiple outputs). |
boolean | hasNext() |
DataSet | next() |
void | reset() |
void | setCollectMetaData(boolean collectMetaData) When set to true: metadata for the current examples will be present in the returned DataSet. |
void | setPreProcessor(org.nd4j.linalg.dataset.api.DataSetPreProcessor preProcessor) |