com.intel.analytics.bigdl.utils

Table

class Table extends Serializable with Activity

Simulate the Table data structure in lua

Linear Supertypes
Activity, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Table
  2. Activity
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def add(other: Table): Table.this.type

  7. def apply[T](key: Any): T

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clear(): Table.this.type

    Empty the Table

  10. def clone(): Table

    Definition Classes
    Table → AnyRef
  11. def contains(key: Any): Boolean

  12. def delete(obj: Any): Table.this.type

  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(obj: Any): Boolean

    Definition Classes
    Table → AnyRef → Any
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def flatten(): Table

    Recursively flatten the table to a single table containing no nested table inside

    Recursively flatten the table to a single table containing no nested table inside

    returns

    the flatten table

  17. def foreach[U](f: ((Any, Any)) ⇒ U): Unit

  18. def get[T](key: Any): Option[T]

  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def getOrElse[T](key: Any, default: T): T

  21. def hashCode(): Int

    Definition Classes
    Table → AnyRef → Any
  22. def insert[T](index: Int, obj: T): Table.this.type

  23. def insert[T](obj: T): Table.this.type

  24. def inverseFlatten(target: Table): Table

    Recursively inverse flatten the flatten table to the same shape with target

    Recursively inverse flatten the flatten table to the same shape with target

    target

    the target shape to become

    returns

    the inverse flatten the table with the same shape with target

  25. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  26. def isTable: Boolean

    Return true because it's a Table implemented from Activity

    Return true because it's a Table implemented from Activity

    returns

    true

    Definition Classes
    TableActivity
  27. def isTensor: Boolean

    Return false because it's not a Tensor

    Return false because it's not a Tensor

    returns

    false

    Definition Classes
    TableActivity
  28. def keySet: Set[Any]

  29. def length(): Int

  30. def map[U](func: ((Any, Any)) ⇒ U): Iterable[U]

  31. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  32. final def notify(): Unit

    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  34. def remove[T](): Option[T]

  35. def remove[T](index: Int): Option[T]

  36. def save(path: String, overWrite: Boolean): Table.this.type

  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  38. def toSeq[D]: Seq[D]

    Return the elements of this table as a Seq.

    Return the elements of this table as a Seq. This method assumes the key of this table are all the integers between 1 to this.length(), the values are all D

  39. def toString(): String

    Definition Classes
    Table → AnyRef → Any
  40. def toTable: Table

    Definition Classes
    TableActivity
  41. def toTensor[D](implicit ev: TensorNumeric[D]): Tensor[D]

    Definition Classes
    TableActivity
  42. def update(key: Any, value: Any): Table.this.type

  43. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Activity

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped