Class MultiDataSetIteratorAdapter

    • Constructor Detail

      • MultiDataSetIteratorAdapter

        public MultiDataSetIteratorAdapter​(DataSetIterator iter)
    • Method Detail

      • next

        public MultiDataSet next​(int i)
        Description copied from interface: MultiDataSetIterator
        Fetch the next 'num' examples. Similar to the next method, but returns a specified number of examples
        Specified by:
        next in interface MultiDataSetIterator
        Parameters:
        i - Number of examples to fetch
      • setPreProcessor

        public void setPreProcessor​(MultiDataSetPreProcessor multiDataSetPreProcessor)
        Description copied from interface: MultiDataSetIterator
        Set the preprocessor to be applied to each MultiDataSet, before each MultiDataSet is returned.
        Specified by:
        setPreProcessor in interface MultiDataSetIterator
        Parameters:
        multiDataSetPreProcessor - MultiDataSetPreProcessor. May be null.
      • resetSupported

        public boolean resetSupported()
        Description copied from interface: MultiDataSetIterator
        Is resetting supported by this DataSetIterator? Many DataSetIterators do support resetting, but some don't
        Specified by:
        resetSupported in interface MultiDataSetIterator
        Returns:
        true if reset method is supported; false otherwise
      • asyncSupported

        public boolean asyncSupported()
        Description copied from interface: MultiDataSetIterator
        Does this MultiDataSetIterator support asynchronous prefetching of multiple MultiDataSet objects? Most MultiDataSetIterators do, but in some cases it may not make sense to wrap this iterator in an iterator that does asynchronous prefetching. For example, it would not make sense to use asynchronous prefetching for the following types of iterators: (a) Iterators that store their full contents in memory already (b) Iterators that re-use features/labels arrays (as future next() calls will overwrite past contents) (c) Iterators that already implement some level of asynchronous prefetching (d) Iterators that may return different data depending on when the next() method is called
        Specified by:
        asyncSupported in interface MultiDataSetIterator
        Returns:
        true if asynchronous prefetching from this iterator is OK; false if asynchronous prefetching should not be used with this iterator