Class/Object

com.intel.analytics.bigdl.dataset

ArraySample

Related Docs: object ArraySample | package dataset

Permalink

class ArraySample[T] extends Sample[T]

A kind of sample who use only one array

Linear Supertypes
Sample[T], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ArraySample
  2. Sample
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def canEqual(other: Any): Boolean

    Permalink
  6. def clone(): ArraySample.this.type

    Permalink

    returns

    A deep clone

    Definition Classes
    Sample → AnyRef
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(other: Any): Boolean

    Permalink
    Definition Classes
    ArraySample → AnyRef → Any
  9. def feature(index: Int)(implicit ev: TensorNumeric[T]): Tensor[T]

    Permalink

    Get feature tensor for given index

    Get feature tensor for given index

    index

    index of specific sample

    Definition Classes
    ArraySampleSample
  10. def feature()(implicit ev: TensorNumeric[T]): Tensor[T]

    Permalink

    Get feature tensor, for one feature Sample only.

    Get feature tensor, for one feature Sample only. You don't need to override this, because we have add a default implement to throw exception.

    returns

    feature tensor

    Definition Classes
    ArraySampleSample
  11. def featureLength(index: Int): Int

    Permalink

    First dimension length of index-th feature.

    First dimension length of index-th feature. This function could be used to sort samples in DataSet.

    Definition Classes
    ArraySampleSample
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def getData(): Array[T]

    Permalink

    Get data

    Get data

    returns

    data

    Definition Classes
    ArraySampleSample
  15. def getFeatureSize(): Array[Array[Int]]

    Permalink

    Get feature sizes

    Get feature sizes

    returns

    feature sizes

    Definition Classes
    ArraySampleSample
  16. def getLabelSize(): Array[Array[Int]]

    Permalink

    Get label sizes

    Get label sizes

    returns

    label sizes

    Definition Classes
    ArraySampleSample
  17. def hashCode(): Int

    Permalink
    Definition Classes
    ArraySample → AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def label()(implicit ev: TensorNumeric[T]): Tensor[T]

    Permalink

    Get label tensor, for one label Sample only.

    Get label tensor, for one label Sample only. You don't need to override this, because we have add a default implement to throw exception.

    returns

    label tensor

    Definition Classes
    ArraySampleSample
  20. def label(index: Int)(implicit ev: TensorNumeric[T]): Tensor[T]

    Permalink

    Get label tensor for given index

    Get label tensor for given index

    index

    index of specific sample

    Definition Classes
    ArraySampleSample
  21. def labelLength(index: Int): Int

    Permalink

    First dimension length of index-th label.

    First dimension length of index-th label. This function could be used to find the longest label.

    Definition Classes
    ArraySampleSample
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  25. def numFeature(): Int

    Permalink

    Number of tensors in feature

    Number of tensors in feature

    returns

    number of tensors in feature

    Definition Classes
    ArraySampleSample
  26. def numLabel(): Int

    Permalink

    Number of tensors in label

    Number of tensors in label

    returns

    number of tensors in label

    Definition Classes
    ArraySampleSample
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def set(featureData: Array[T], labelData: Array[T], featureSize: Array[Int], labelSize: Array[Int])(implicit ev: TensorNumeric[T]): Sample[T]

    Permalink

    Set data of feature and label.

    Set data of feature and label.

    Definition Classes
    ArraySampleSample
    Annotations
    @deprecated
    Deprecated

    (Since version 0.2.0) Old interface

Inherited from Sample[T]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped