public class AsyncDataSetIterator extends Object implements org.nd4j.linalg.dataset.api.iterator.DataSetIterator
Modifier and Type | Class and Description |
---|---|
protected class |
AsyncDataSetIterator.AsyncPrefetchThread |
Modifier and Type | Field and Description |
---|---|
protected org.nd4j.linalg.dataset.api.iterator.DataSetIterator |
backedIterator |
protected BlockingQueue<org.nd4j.linalg.dataset.DataSet> |
buffer |
protected DataSetCallback |
callback |
protected Integer |
deviceId |
protected AtomicBoolean |
hasDepleted |
protected org.nd4j.linalg.dataset.DataSet |
nextElement |
protected int |
prefetchSize |
protected AtomicBoolean |
shouldWork |
protected org.nd4j.linalg.dataset.DataSet |
terminator |
protected AsyncDataSetIterator.AsyncPrefetchThread |
thread |
protected RuntimeException |
throwable |
protected boolean |
useWorkspace |
protected String |
workspaceId |
Modifier | Constructor and Description |
---|---|
protected |
AsyncDataSetIterator() |
|
AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator) |
|
AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator,
int queueSize) |
|
AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator iterator,
int queueSize,
BlockingQueue<org.nd4j.linalg.dataset.DataSet> queue) |
|
AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator iterator,
int queueSize,
BlockingQueue<org.nd4j.linalg.dataset.DataSet> queue,
boolean useWorkspace) |
|
AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator iterator,
int queueSize,
BlockingQueue<org.nd4j.linalg.dataset.DataSet> queue,
boolean useWorkspace,
DataSetCallback callback) |
|
AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator iterator,
int queueSize,
BlockingQueue<org.nd4j.linalg.dataset.DataSet> queue,
boolean useWorkspace,
DataSetCallback callback,
Integer deviceId) |
|
AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator,
int queueSize,
boolean useWorkspace) |
|
AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator,
int queueSize,
boolean useWorkspace,
DataSetCallback callback) |
|
AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator,
int queueSize,
boolean useWorkspace,
Integer deviceId) |
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()
Batch size
|
int |
cursor()
The current cursor if applicable
|
protected void |
externalCall() |
List<String> |
getLabels()
Get dataset iterator record reader labels
|
org.nd4j.linalg.dataset.api.DataSetPreProcessor |
getPreProcessor()
Returns preprocessors, if defined
|
boolean |
hasNext()
Returns
true if the iteration has more elements. |
int |
inputColumns()
Input columns for the dataset
|
org.nd4j.linalg.dataset.DataSet |
next()
Returns the next element in the iteration.
|
org.nd4j.linalg.dataset.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()
Removes from the underlying collection the last element returned
by this iterator (optional operation).
|
void |
reset()
Resets the iterator back to the beginning
|
boolean |
resetSupported()
Is resetting supported by this DataSetIterator? Many DataSetIterators do support resetting,
but some don't
|
void |
setPreProcessor(org.nd4j.linalg.dataset.api.DataSetPreProcessor preProcessor)
Set a pre processor
|
void |
shutdown()
This method will terminate background thread AND will destroy attached workspace (if any)
PLEASE NOTE: After shutdown() call, this instance can't be used anymore
|
int |
totalExamples()
Total examples in the iterator
|
int |
totalOutcomes()
The number of labels for the dataset
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEachRemaining
protected org.nd4j.linalg.dataset.api.iterator.DataSetIterator backedIterator
protected org.nd4j.linalg.dataset.DataSet terminator
protected org.nd4j.linalg.dataset.DataSet nextElement
protected BlockingQueue<org.nd4j.linalg.dataset.DataSet> buffer
protected AsyncDataSetIterator.AsyncPrefetchThread thread
protected AtomicBoolean shouldWork
protected volatile RuntimeException throwable
protected boolean useWorkspace
protected int prefetchSize
protected String workspaceId
protected Integer deviceId
protected AtomicBoolean hasDepleted
protected DataSetCallback callback
protected AsyncDataSetIterator()
public AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator)
public AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator iterator, int queueSize, BlockingQueue<org.nd4j.linalg.dataset.DataSet> queue)
public AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator, int queueSize)
public AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator, int queueSize, boolean useWorkspace)
public AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator, int queueSize, boolean useWorkspace, Integer deviceId)
public AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator baseIterator, int queueSize, boolean useWorkspace, DataSetCallback callback)
public AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator iterator, int queueSize, BlockingQueue<org.nd4j.linalg.dataset.DataSet> queue, boolean useWorkspace)
public AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator iterator, int queueSize, BlockingQueue<org.nd4j.linalg.dataset.DataSet> queue, boolean useWorkspace, DataSetCallback callback)
public AsyncDataSetIterator(org.nd4j.linalg.dataset.api.iterator.DataSetIterator iterator, int queueSize, BlockingQueue<org.nd4j.linalg.dataset.DataSet> queue, boolean useWorkspace, DataSetCallback callback, Integer deviceId)
public org.nd4j.linalg.dataset.DataSet next(int num)
next
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
num
- the number of examplespublic int totalExamples()
totalExamples
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public int inputColumns()
inputColumns
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public int totalOutcomes()
totalOutcomes
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public boolean resetSupported()
resetSupported
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public boolean asyncSupported()
asyncSupported
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
protected void externalCall()
public void reset()
reset
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public void shutdown()
public int batch()
batch
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public int cursor()
cursor
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public int numExamples()
numExamples
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public void setPreProcessor(org.nd4j.linalg.dataset.api.DataSetPreProcessor preProcessor)
setPreProcessor
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
preProcessor
- a pre processor to setpublic org.nd4j.linalg.dataset.api.DataSetPreProcessor getPreProcessor()
getPreProcessor
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public List<String> getLabels()
getLabels
in interface org.nd4j.linalg.dataset.api.iterator.DataSetIterator
public boolean hasNext()
true
if the iteration has more elements.
(In other words, returns true
if next(int)
would
return an element rather than throwing an exception.)public org.nd4j.linalg.dataset.DataSet next()
public void remove()
next(int)
. The behavior of an iterator
is unspecified if the underlying collection is modified while the
iteration is in progress in any way other than by calling this
method.remove
in interface Iterator<org.nd4j.linalg.dataset.DataSet>
UnsupportedOperationException
- if the remove
operation is not supported by this iteratorIllegalStateException
- if the next
method has not
yet been called, or the remove
method has already
been called after the last call to the next
methodCopyright © 2017. All rights reserved.