Class

org.apache.mxnet.io

PrefetchingIter

Related Doc: package io

Permalink

class PrefetchingIter extends DataIter

Base class for prefetching iterators. Takes one or more DataIters and combine them with prefetching.

Linear Supertypes
DataIter, Iterator[DataBatch], TraversableOnce[DataBatch], GenTraversableOnce[DataBatch], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PrefetchingIter
  2. DataIter
  3. Iterator
  4. TraversableOnce
  5. GenTraversableOnce
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PrefetchingIter(iters: IndexedSeq[DataIter], dataNames: IndexedSeq[Map[String, String]] = null, labelNames: IndexedSeq[Map[String, String]] = null)

    Permalink

    iters

    list of DataIters

Type Members

  1. class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]]

    Permalink
    Definition Classes
    Iterator

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++[B >: DataBatch](that: ⇒ GenTraversableOnce[B]): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  4. def /:[B](z: B)(op: (B, DataBatch) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  5. def :\[B](z: B)(op: (DataBatch, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  8. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  9. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  10. def aggregate[B](z: ⇒ B)(seqop: (B, DataBatch) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  12. def batchSize: Int

    Permalink
    Definition Classes
    PrefetchingIterDataIter
  13. def buffered: BufferedIterator[DataBatch]

    Permalink
    Definition Classes
    Iterator
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def collect[B](pf: PartialFunction[DataBatch, B]): Iterator[B]

    Permalink
    Definition Classes
    Iterator
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) collect has changed. The previous behavior can be reproduced with toSeq.

  16. def collectFirst[B](pf: PartialFunction[DataBatch, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  17. def contains(elem: Any): Boolean

    Permalink
    Definition Classes
    Iterator
  18. def copyToArray[B >: DataBatch](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  19. def copyToArray[B >: DataBatch](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. def copyToArray[B >: DataBatch](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def copyToBuffer[B >: DataBatch](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  22. def corresponds[B](that: GenTraversableOnce[B])(p: (DataBatch, B) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator
  23. def count(p: (DataBatch) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. def defaultBucketKey: AnyRef

    Permalink
    Definition Classes
    DataIter
  25. def dispose(): Unit

    Permalink

    Stop all its internal prefetching threads.

    Stop all its internal prefetching threads. The object shall never be used after it is disposed.

  26. def drop(n: Int): Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator
  27. def dropWhile(p: (DataBatch) ⇒ Boolean): Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator
  28. def duplicate: (Iterator[DataBatch], Iterator[DataBatch])

    Permalink
    Definition Classes
    Iterator
  29. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  31. def exists(p: (DataBatch) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  32. def filter(p: (DataBatch) ⇒ Boolean): Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator
  33. def filterNot(p: (DataBatch) ⇒ Boolean): Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator
  34. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  35. def find(p: (DataBatch) ⇒ Boolean): Option[DataBatch]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  36. def flatMap[B](f: (DataBatch) ⇒ GenTraversableOnce[B]): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  37. def fold[A1 >: DataBatch](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  38. def foldLeft[B](z: B)(op: (B, DataBatch) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  39. def foldRight[B](z: B)(op: (DataBatch, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  40. def forall(p: (DataBatch) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  41. def foreach[U](f: (DataBatch) ⇒ U): Unit

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  42. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  43. def getData(): IndexedSeq[NDArray]

    Permalink

    get data of current batch

    get data of current batch

    returns

    the data of current batch

    Definition Classes
    PrefetchingIterDataIter
  44. def getIndex(): IndexedSeq[Long]

    Permalink

    the index of current batch

    the index of current batch

    Definition Classes
    PrefetchingIterDataIter
  45. def getLabel(): IndexedSeq[NDArray]

    Permalink

    Get label of current batch

    Get label of current batch

    returns

    the label of current batch

    Definition Classes
    PrefetchingIterDataIter
  46. def getPad(): Int

    Permalink

    get the number of padding examples in current batch

    get the number of padding examples in current batch

    returns

    number of padding examples in current batch

    Definition Classes
    PrefetchingIterDataIter
  47. def grouped[B >: DataBatch](size: Int): GroupedIterator[B]

    Permalink
    Definition Classes
    Iterator
  48. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  49. def hasNext: Boolean

    Permalink
    Definition Classes
    PrefetchingIter → Iterator
  50. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  51. def indexOf[B >: DataBatch](elem: B): Int

    Permalink
    Definition Classes
    Iterator
  52. def indexWhere(p: (DataBatch) ⇒ Boolean): Int

    Permalink
    Definition Classes
    Iterator
  53. def isEmpty: Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  54. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  55. def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  56. def length: Int

    Permalink
    Definition Classes
    Iterator
  57. def map[B](f: (DataBatch) ⇒ B): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  58. def max[B >: DataBatch](implicit cmp: Ordering[B]): DataBatch

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def maxBy[B](f: (DataBatch) ⇒ B)(implicit cmp: Ordering[B]): DataBatch

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  60. def min[B >: DataBatch](implicit cmp: Ordering[B]): DataBatch

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  61. def minBy[B](f: (DataBatch) ⇒ B)(implicit cmp: Ordering[B]): DataBatch

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  66. def next(): DataBatch

    Permalink

    get next data batch from iterator

    get next data batch from iterator

    Definition Classes
    PrefetchingIterDataIter → Iterator
  67. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  68. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  69. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  70. def padTo[A1 >: DataBatch](len: Int, elem: A1): Iterator[A1]

    Permalink
    Definition Classes
    Iterator
  71. def partition(p: (DataBatch) ⇒ Boolean): (Iterator[DataBatch], Iterator[DataBatch])

    Permalink
    Definition Classes
    Iterator
  72. def patch[B >: DataBatch](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  73. def prefetchFunc(i: Int): Runnable

    Permalink
  74. def product[B >: DataBatch](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def provideDataDesc: IndexedSeq[DataDesc]

    Permalink
    Definition Classes
    PrefetchingIterDataIter
  76. def provideLabelDesc: IndexedSeq[DataDesc]

    Permalink
    Definition Classes
    PrefetchingIterDataIter
  77. def reduce[A1 >: DataBatch](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def reduceLeft[B >: DataBatch](op: (B, DataBatch) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  79. def reduceLeftOption[B >: DataBatch](op: (B, DataBatch) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def reduceOption[A1 >: DataBatch](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def reduceRight[B >: DataBatch](op: (DataBatch, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. def reduceRightOption[B >: DataBatch](op: (DataBatch, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  83. def reset(): Unit

    Permalink

    reset the iterator

    reset the iterator

    Definition Classes
    PrefetchingIterDataIter
  84. def reversed: List[DataBatch]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  85. def sameElements(that: Iterator[_]): Boolean

    Permalink
    Definition Classes
    Iterator
  86. def scanLeft[B](z: B)(op: (B, DataBatch) ⇒ B): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  87. def scanRight[B](z: B)(op: (DataBatch, B) ⇒ B): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  88. def seq: Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  89. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def slice(from: Int, until: Int): Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator
  91. def sliding[B >: DataBatch](size: Int, step: Int): GroupedIterator[B]

    Permalink
    Definition Classes
    Iterator
  92. def span(p: (DataBatch) ⇒ Boolean): (Iterator[DataBatch], Iterator[DataBatch])

    Permalink
    Definition Classes
    Iterator
  93. def sum[B >: DataBatch](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  95. def take(n: Int): Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator
  96. def takeWhile(p: (DataBatch) ⇒ Boolean): Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator
  97. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, DataBatch, Col[DataBatch]]): Col[DataBatch]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toArray[B >: DataBatch](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def toBuffer[B >: DataBatch]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def toIndexedSeq: IndexedSeq[DataBatch]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def toIterable: Iterable[DataBatch]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def toIterator: Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  103. def toList: List[DataBatch]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def toMap[T, U](implicit ev: <:<[DataBatch, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def toSeq: Seq[DataBatch]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def toSet[B >: DataBatch]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def toStream: Stream[DataBatch]

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  108. def toString(): String

    Permalink
    Definition Classes
    Iterator → AnyRef → Any
  109. def toTraversable: Traversable[DataBatch]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  110. def toVector: Vector[DataBatch]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  112. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  113. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  114. def withFilter(p: (DataBatch) ⇒ Boolean): Iterator[DataBatch]

    Permalink
    Definition Classes
    Iterator
  115. def zip[B](that: Iterator[B]): Iterator[(DataBatch, B)]

    Permalink
    Definition Classes
    Iterator
  116. def zipAll[B, A1 >: DataBatch, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]

    Permalink
    Definition Classes
    Iterator
  117. def zipWithIndex: Iterator[(DataBatch, Int)]

    Permalink
    Definition Classes
    Iterator

Deprecated Value Members

  1. def provideData: ListMap[String, Shape]

    Permalink
    Definition Classes
    PrefetchingIterDataIter
    Annotations
    @deprecated
    Deprecated

    (Since version 1.3.0) Please use provideDataDesc instead

  2. def provideLabel: ListMap[String, Shape]

    Permalink
    Definition Classes
    PrefetchingIterDataIter
    Annotations
    @deprecated
    Deprecated

    (Since version 1.3.0) Please use provideDataDesc instead

Inherited from DataIter

Inherited from Iterator[DataBatch]

Inherited from TraversableOnce[DataBatch]

Inherited from GenTraversableOnce[DataBatch]

Inherited from AnyRef

Inherited from Any

Ungrouped