Packages

abstract class Dataset[T] extends AnyRef

Self Type
Dataset[T]
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Dataset
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Dataset()(implicit arg0: OutputStructure[T])

Abstract Value Members

  1. abstract def createHandle[D, S]()(implicit evOutputToDataType: Aux[T, D], evOutputToShape: Aux[T, S]): Output[core.types.Variant]
  2. abstract val name: String
  3. abstract def outputDataTypes[D](implicit ev: Aux[T, D]): D
  4. abstract def outputShapes[S](implicit ev: Aux[T, S]): S

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def batch[D, S](batchSize: Long, dropRemainder: Boolean = false)(implicit evOutputToDataType: Aux[T, D], evOutputToShape: Aux[T, S]): Dataset[T]
  6. def cache(directory: Output[String]): Dataset[T]
  7. def cache(directory: String): Dataset[T]
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def concatenateWith[D, S](other: Dataset[T], name: String = s"${this.name}/Concatenated")(implicit evOutputToDataType: Aux[T, D], evOutputToShape: Aux[T, S]): Dataset[T]
  10. def createInitializableIterator[D, S](sharedName: String = "", name: String = "InitializableDatasetIterator")(implicit evOutputToDataType: Aux[T, D], evOutputToShape: Aux[T, S]): InitializableDatasetIterator[T]
  11. def drop(count: Output[Long]): Dataset[T]
  12. def drop(count: Long): Dataset[T]
  13. def dynamicBatch[D, S](batchSize: Output[Long], dropRemainder: Output[Boolean] = false)(implicit evOutputToDataType: Aux[T, D], evOutputToShape: Aux[T, S]): Dataset[T]
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def filter(predicate: (T) => Output[Boolean], name: String = s"${this.name}/Filter"): Dataset[T]
  17. def flatMap[D, S, R, RD, RS](function: (T) => Dataset[R], name: String = s"${this.name}/FlatMap")(implicit arg0: OutputStructure[R], evOutputToDataTypeT: Aux[T, D], evOutputToShapeT: Aux[T, S], evOutputToDataType: Aux[R, RD], evOutputToShape: Aux[R, RS]): Dataset[R]
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. def groupByWindow[D, S](keyFn: (T) => Output[Long], reduceFn: ((Output[Long], Dataset[T])) => Dataset[T], windowSizeFn: (Output[Long]) => Output[Long], name: String = s"${this.name}/GroupByWindow")(implicit evOutputToDataType: Aux[T, D], evOutputToShape: Aux[T, S]): Dataset[T]
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def ignoreErrors(): Dataset[T]
  22. def interleave[D, S, R, RD, RS](function: (T) => Dataset[R], cycleLength: Long, blockLength: Long = 1L, numParallelCalls: Int = 1, name: String = "Interleave")(implicit arg0: OutputStructure[R], evOutputToDataTypeT: Aux[T, D], evOutputToShapeT: Aux[T, S], evOutputToDataType: Aux[R, RD], evOutputToShape: Aux[R, RS]): Dataset[R]
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def map[D, S, R](function: (T) => R, numParallelCalls: Int = 1, name: String = s"${this.name}/Map")(implicit arg0: OutputStructure[R], evOutputToDataTypeT: Aux[T, D], evOutputToShapeT: Aux[T, S]): Dataset[R]
  25. def mapAndBatch[D, S, R](function: (T) => R, batchSize: Long, numParallelCalls: Long = 1L, dropRemainder: Boolean = false, name: String = s"${this.name}/Map")(implicit arg0: OutputStructure[R], evOutputToDataTypeT: Aux[T, D], evOutputToShapeT: Aux[T, S]): Dataset[R]
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. def paddedBatch[D, S, V](batchSize: Long, paddedShapes: S, paddingValues: Option[V] = None, name: String = s"${this.name}/PaddedBatch")(implicit evOutputToDataType: Aux[T, D], evOutputToShape: Aux[T, S], evOutputToTensor: Aux[T, V]): Dataset[T]
  30. def prefetch(bufferSize: Long): Dataset[T]
  31. def repeat(count: Long = -1L): Dataset[T]
  32. def shard[D, S](numShards: Long, shardIndex: Long)(implicit evOutputToDataType: Aux[T, D], evOutputToShape: Aux[T, S]): Dataset[T]
    Annotations
    @throws(scala.this.throws.<init>$default$1[org.platanios.tensorflow.api.core.exception.InvalidArgumentException])
  33. def shuffle(bufferSize: Long, reshuffleEachIteration: Boolean = true, seed: Option[Int] = None): Dataset[T]
  34. def shuffleAndRepeat(bufferSize: Long, count: Long = -1L, seed: Option[Int] = None): Dataset[T]
  35. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  36. def take(count: Output[Long]): Dataset[T]
  37. def take(count: Long): Dataset[T]
  38. def toString(): String
    Definition Classes
    Dataset → AnyRef → Any
  39. def transform[R](transformFn: (Dataset[T]) => Dataset[R])(implicit evR: OutputStructure[R]): Dataset[R]
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. def zip[D, S, R, RD, RS](other: Dataset[R], name: String = s"${this.name}/Zip")(implicit arg0: OutputStructure[R], evOutputToDataTypeT: Aux[T, D], evOutputToShapeT: Aux[T, S], evOutputToDataTypeR: Aux[R, RD], evOutputToShapeR: Aux[R, RS]): Dataset[(T, R)]
  44. def zip3[D, S, R1, RD1, RS1, R2, RD2, RS2](other1: Dataset[R1], other2: Dataset[R2], name: String = s"${this.name}/Zip")(implicit arg0: OutputStructure[R1], arg1: OutputStructure[R2], evOutputToDataTypeT: Aux[T, D], evOutputToShapeT: Aux[T, S], evOutputToDataTypeR1: Aux[R1, RD1], evOutputToShapeR1: Aux[R1, RS1], evOutputToDataTypeR2: Aux[R2, RD2], evOutputToShapeR2: Aux[R2, RS2]): Dataset[(T, R1, R2)]
  45. def zipMultiple[D, S](others: Seq[Dataset[T]], name: String = s"${this.name}/Zip")(implicit evOutputToDataTypeT: Aux[T, D], evOutputToShapeT: Aux[T, S]): Dataset[Seq[T]]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped