Class

org.platanios.tensorflow.api.ops.variables

PartitionedVariable

Related Doc: package variables

Permalink

case class PartitionedVariable extends Iterable[Variable] with VariableLike with Product with Serializable

Partitioned variable wrapper.

Variables passed via wrappedVariables must contain a non-null save slice information field. Concatenation and iteration is in lexicographic order according to the variableOffset property of the save slice information.

Accessing this object as an Output returns the variable parts concatenated along the partition axis.

This wrapper also acts as an iterator that allows accessing the underlying variables. This iterator is necessary to control the order of access when variables are not partitioned in a standard way along a single axis.

Annotations
@throws( ... )
Exceptions thrown

IllegalArgumentException If the provided variables sequence is empty, or if their shapes do not match with shape, or if their data types do not match dataType., or if they have null-valued save slice information

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PartitionedVariable
  2. Serializable
  3. Serializable
  4. Product
  5. VariableLike
  6. OutputConvertible
  7. Iterable
  8. IterableLike
  9. Equals
  10. GenIterable
  11. GenIterableLike
  12. Traversable
  13. GenTraversable
  14. GenericTraversableTemplate
  15. TraversableLike
  16. GenTraversableLike
  17. Parallelizable
  18. TraversableOnce
  19. GenTraversableOnce
  20. FilterMonadic
  21. HasNewBuilder
  22. AnyRef
  23. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Iterable[Variable]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

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 >: Variable, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Variable], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  4. def ++:[B >: Variable, That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[Variable], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  5. def ++:[B >: Variable, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Variable], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  6. def /:[B](z: B)(op: (B, Variable) ⇒ B): B

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  14. def assign(value: Output, name: String = "Assign"): Output

    Permalink

    Creates an op that assigns the provided value to this variable and returns its value.

    Creates an op that assigns the provided value to this variable and returns its value.

    value

    Value to assign the variable to.

    name

    Name for created op.

    returns

    Variable value read op, after the assignment.

    Definition Classes
    PartitionedVariableVariableLike
    Annotations
    @throws( ... )
  15. def assignAdd(value: Output, name: String = "AssignAdd"): Output

    Permalink

    Creates an op that adds the provided value to the current value of the variable and returns its value.

    Creates an op that adds the provided value to the current value of the variable and returns its value.

    value

    Value to add to the current variable value.

    name

    Name for created op.

    returns

    Variable value read op, after the addition.

    Definition Classes
    PartitionedVariableVariableLike
    Annotations
    @throws( ... ) @throws( ... )
  16. def assignScatter(indices: Output, values: Output, name: String = "AssignScatter"): Output

    Permalink

    Creates an op that applies updates the provided sparse value updates to this variable and returns its value.

    Creates an op that applies updates the provided sparse value updates to this variable and returns its value.

    indices

    Indices corresponding to the values used for the update.

    values

    Values to use for updating, corresponding to the provided indices.

    name

    Name for created op.

    returns

    Variable value read op, after the addition.

    Definition Classes
    PartitionedVariableVariableLike
    Annotations
    @throws( ... ) @throws( ... )
  17. def assignScatterAdd(indices: Output, values: Output, name: String = "AssignScatterAdd"): Output

    Permalink

    Creates an op that adds the provided sparse value to the current value of the variable and returns its value.

    Creates an op that adds the provided sparse value to the current value of the variable and returns its value.

    indices

    Indices corresponding to the values being added.

    values

    Values to be added, corresponding to the provided indices.

    name

    Name for created op.

    returns

    Variable value read op, after the addition.

    Definition Classes
    PartitionedVariableVariableLike
    Annotations
    @throws( ... ) @throws( ... )
  18. def assignScatterSub(indices: Output, values: Output, name: String = "AssignScatterSub"): Output

    Permalink

    Creates an op that subtracts the provided sparse value from the current value of the variable and returns its value.

    Creates an op that subtracts the provided sparse value from the current value of the variable and returns its value.

    indices

    Indices corresponding to the values being subtracted.

    values

    Values to be subtracted, corresponding to the provided indices.

    name

    Name for created op.

    returns

    Variable value read op, after the subtraction.

    Definition Classes
    PartitionedVariableVariableLike
    Annotations
    @throws( ... ) @throws( ... )
  19. def assignSub(value: Output, name: String = "AssignAdd"): Output

    Permalink

    Creates an op that subtracts the provided value from the current value of the variable and returns its value.

    Creates an op that subtracts the provided value from the current value of the variable and returns its value.

    value

    Value to subtract from the current variable value.

    name

    Name for created op.

    returns

    Variable value read op, after the subtraction.

    Definition Classes
    PartitionedVariableVariableLike
    Annotations
    @throws( ... ) @throws( ... )
  20. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  21. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def collect[B, That](pf: PartialFunction[Variable, B])(implicit bf: CanBuildFrom[Iterable[Variable], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  23. def collectFirst[B](pf: PartialFunction[Variable, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  24. def companion: GenericCompanion[Iterable]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  25. def concatenated: Output

    Permalink

    Returns the overall concatenated value as an Output.

    Returns the overall concatenated value as an Output.

    This is different from using the partitioned variable directly as an op output (through implicit conversion or toOutput) in that it creates a new set of ops that retain the control dependencies from its scope.

    returns

    Concatenated op output.

    Annotations
    @throws( ... )
    Exceptions thrown

    IllegalArgumentException If having more than one partition axes.

  26. def copyToArray[B >: Variable](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  27. def copyToArray[B >: Variable](xs: Array[B]): Unit

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

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

    Permalink
    Definition Classes
    TraversableOnce
  30. def count(p: (Variable) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  31. val dataType: types.DataType

    Permalink

    Data type of the variables.

    Data type of the variables.

    Definition Classes
    PartitionedVariableVariableLike
  32. def drop(n: Int): Iterable[Variable]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  33. def dropRight(n: Int): Iterable[Variable]

    Permalink
    Definition Classes
    IterableLike
  34. def dropWhile(p: (Variable) ⇒ Boolean): Iterable[Variable]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  35. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  36. def exists(p: (Variable) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  37. def filter(p: (Variable) ⇒ Boolean): Iterable[Variable]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  38. def filterNot(p: (Variable) ⇒ Boolean): Iterable[Variable]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  39. def finalize(): Unit

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

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  41. def flatMap[B, That](f: (Variable) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Variable], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  42. def flatten[B](implicit asTraversable: (Variable) ⇒ GenTraversableOnce[B]): Iterable[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  43. def fold[A1 >: Variable](z: A1)(op: (A1, A1) ⇒ A1): A1

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

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

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  46. def forall(p: (Variable) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  47. def foreach[U](f: (Variable) ⇒ U): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  48. def gather(indices: Output, name: String = "Gather"): Output

    Permalink

    Creates an op that reads the value of this variable sparsely, using the provided indices.

    Creates an op that reads the value of this variable sparsely, using the provided indices.

    This method should be used when there are multiple reads, or when it is desirable to read the value only after some condition is true.

    indices

    Indices to use for the sparse read.

    name

    Name for the created op.

    returns

    Created op.

    Definition Classes
    PartitionedVariableVariableLike
    Annotations
    @throws( ... )
  49. def genericBuilder[B]: Builder[B, Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  50. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  51. val graph: core.Graph

    Permalink

    Graph where this variable is defined.

    Graph where this variable is defined.

    Definition Classes
    PartitionedVariableVariableLike
  52. def groupBy[K](f: (Variable) ⇒ K): Map[K, Iterable[Variable]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  53. def grouped(size: Int): Iterator[Iterable[Variable]]

    Permalink
    Definition Classes
    IterableLike
  54. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  55. def head: Variable

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  56. def headOption: Option[Variable]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  57. def init: Iterable[Variable]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  58. val initializedValue: Output

    Permalink

    Value of the initialized variable.

    Value of the initialized variable. You should use this instead of the variable itself to initialize another variable with a value that depends on the value of this variable.

    Example:

    // Initialize `v` with random values, and then use `initializedValue` to guarantee that `v` has been initialized
    // before its value is used to initialize `w`. The random tensor will only be sampled once.
    val v = tf.variable("v", FLOAT32, Shape(10, 40), tf.RandomTruncatedNormalInitializer())
    val w = tf.variable("w", initializer = tf.ConstantInitializer(v.initializedValue * 2.0))
    Definition Classes
    PartitionedVariableVariableLike
  59. val initializer: Op

    Permalink

    Op responsible for initializing this variable.

    Op responsible for initializing this variable.

    Definition Classes
    PartitionedVariableVariableLike
  60. def inits: Iterator[Iterable[Variable]]

    Permalink
    Definition Classes
    TraversableLike
  61. def isEmpty: Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  62. val isInitialized: Output

    Permalink

    Op output that is true when the variable has been initialized and false otherwise.

    Op output that is true when the variable has been initialized and false otherwise.

    Definition Classes
    PartitionedVariableVariableLike
  63. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  64. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  65. def iterator: Iterator[Variable]

    Permalink

    Returns an iterator for accessing the underlying partition variables.

    Returns an iterator for accessing the underlying partition variables.

    This iterator is necessary to control order of access when variables are not partitioned in a standard way along a single axis.

    Definition Classes
    PartitionedVariable → IterableLike → GenIterableLike
  66. def last: Variable

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  67. def lastOption: Option[Variable]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  68. def length: Int

    Permalink

    Returns the number of partitions of this partitioned variable.

    Returns the number of partitions of this partitioned variable.

    Annotations
    @throws( ... )
    Exceptions thrown

    IllegalArgumentException If having more than one partition axes.

  69. def map[B, That](f: (Variable) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Variable], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  70. def max[B >: Variable](implicit cmp: Ordering[B]): Variable

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

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

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. val name: String

    Permalink

    Overall name of the variables.

    Overall name of the variables.

    Definition Classes
    PartitionedVariableVariableLike
  78. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  79. def newBuilder: Builder[Variable, Iterable[Variable]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  80. def nonEmpty: Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  83. def par: ParIterable[Variable]

    Permalink
    Definition Classes
    Parallelizable
  84. def parCombiner: Combiner[Variable, ParIterable[Variable]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  85. def partition(p: (Variable) ⇒ Boolean): (Iterable[Variable], Iterable[Variable])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  86. val partitions: Array[Int]

    Permalink

    Number of partitions for each axis/dimension.

  87. def product[B >: Variable](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def read(name: String = "Read"): Output

    Permalink

    Creates an op that reads the value of this variable.

    Creates an op that reads the value of this variable.

    This method should be used when there are multiple reads, or when it is desirable to read the value only after some condition is true.

    The returned value may be different from that of value depending on the device being used, the control dependencies, etc.

    returns

    Created op.

    Definition Classes
    PartitionedVariableVariableLike
  89. def reduce[A1 >: Variable](op: (A1, A1) ⇒ A1): A1

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

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def repr: Iterable[Variable]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  96. def reversed: List[Variable]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  97. def sameElements[B >: Variable](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  98. def scan[B >: Variable, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[Variable], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def scanLeft[B, That](z: B)(op: (B, Variable) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Variable], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  100. def scanRight[B, That](z: B)(op: (Variable, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Variable], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  101. def seq: Iterable[Variable]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  102. val shape: core.Shape

    Permalink

    Overall shape of the variables.

    Overall shape of the variables.

    Definition Classes
    PartitionedVariableVariableLike
  103. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def slice(from: Int, until: Int): Iterable[Variable]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  105. def sliding(size: Int, step: Int): Iterator[Iterable[Variable]]

    Permalink
    Definition Classes
    IterableLike
  106. def sliding(size: Int): Iterator[Iterable[Variable]]

    Permalink
    Definition Classes
    IterableLike
  107. def span(p: (Variable) ⇒ Boolean): (Iterable[Variable], Iterable[Variable])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  108. def splitAt(n: Int): (Iterable[Variable], Iterable[Variable])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  109. def stringPrefix: String

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  110. def sum[B >: Variable](implicit num: Numeric[B]): B

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

    Permalink
    Definition Classes
    AnyRef
  112. def tail: Iterable[Variable]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  113. def tails: Iterator[Iterable[Variable]]

    Permalink
    Definition Classes
    TraversableLike
  114. def take(n: Int): Iterable[Variable]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  115. def takeRight(n: Int): Iterable[Variable]

    Permalink
    Definition Classes
    IterableLike
  116. def takeWhile(p: (Variable) ⇒ Boolean): Iterable[Variable]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  117. def thisCollection: Iterable[Variable]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  118. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Variable, Col[Variable]]): Col[Variable]

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def toBuffer[B >: Variable]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def toCollection(repr: Iterable[Variable]): Iterable[Variable]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  122. def toIndexedSeq: IndexedSeq[Variable]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def toIterable: Iterable[Variable]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  124. def toIterator: Iterator[Variable]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  125. def toList: List[Variable]

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toOutput: Output

    Permalink

    Converts this variable to an op output.

    Converts this variable to an op output. This function simply returns an op corresponding to the variable value.

    Definition Classes
    VariableLikeOutputConvertible
  128. def toSeq: Seq[Variable]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toSet[B >: Variable]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def toStream: Stream[Variable]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  131. def toString(): String

    Permalink
    Definition Classes
    TraversableLike → Any
  132. def toTraversable: Traversable[Variable]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  133. def toVector: Vector[Variable]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def transpose[B](implicit asTraversable: (Variable) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  135. def unzip[A1, A2](implicit asPair: (Variable) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  136. def unzip3[A1, A2, A3](implicit asTriple: (Variable) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  137. val value: Output

    Permalink

    Returns a cached op which reads the last value of this partitioned variable.

    Returns a cached op which reads the last value of this partitioned variable.

    You can not assign a new value to the returned tensor as it is not a reference to the variable.

    The returned op output will not inherit the control dependencies from the scope where the value is used, which is equivalent behavior to that of getting the value of a variable.

    NOTE: You usually do not need to call this method directly, as all ops that use variables do so by internally converting them to tensors.

    Definition Classes
    PartitionedVariableVariableLike
  138. val variables: Seq[Variable]

    Permalink
  139. def view(from: Int, until: Int): IterableView[Variable, Iterable[Variable]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  140. def view: IterableView[Variable, Iterable[Variable]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  141. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  144. def withFilter(p: (Variable) ⇒ Boolean): FilterMonadic[Variable, Iterable[Variable]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  145. def zip[A1 >: Variable, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[Variable], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  146. def zipAll[B, A1 >: Variable, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[Variable], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  147. def zipWithIndex[A1 >: Variable, That](implicit bf: CanBuildFrom[Iterable[Variable], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from VariableLike

Inherited from OutputConvertible

Inherited from Iterable[Variable]

Inherited from Equals

Inherited from GenIterable[Variable]

Inherited from Traversable[Variable]

Inherited from GenTraversable[Variable]

Inherited from Parallelizable[Variable, ParIterable[Variable]]

Inherited from TraversableOnce[Variable]

Inherited from GenTraversableOnce[Variable]

Inherited from HasNewBuilder[Variable, Iterable[org.platanios.tensorflow.api.ops.variables.Variable] @scala.annotation.unchecked.uncheckedVariance]

Inherited from AnyRef

Inherited from Any

Ungrouped