Class/Object

org.platanios.tensorflow.api.learn.layers.rnn.cell

BasicLSTMCell

Related Docs: object BasicLSTMCell | package cell

Permalink

class BasicLSTMCell extends RNNCell[Output, Shape, LSTMState, (Shape, Shape)]

$OpDocRNNCellBasicLSTMCell

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BasicLSTMCell
  2. RNNCell
  3. Layer
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BasicLSTMCell(name: String, numUnits: Int, dataType: DataType, forgetBias: Float = 1.0f, activation: (Output) ⇒ Output = ops.Math.tanh(_), kernelInitializer: Initializer = null, biasInitializer: Initializer = ZerosInitializer)

    Permalink

    name

    Name scope (also acting as variable scope) for this layer.

    numUnits

    Number of units in the LSTM cell.

    dataType

    Data type for the parameters of this cell.

    forgetBias

    Forget bias added to the forget gate.

    activation

    Activation function used by this GRU cell.

    kernelInitializer

    Variable initializer for kernel matrices.

    biasInitializer

    Variable initializer for the bias vectors.

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: Layer[Tuple[Output, LSTMState], Tuple[Output, LSTMState]]): Concatenate[Tuple[Output, LSTMState], Tuple[Output, LSTMState]]

    Permalink
    Definition Classes
    Layer
  4. def ++(others: Seq[Layer[Tuple[Output, LSTMState], Tuple[Output, LSTMState]]]): Concatenate[Tuple[Output, LSTMState], Tuple[Output, LSTMState]]

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

    Permalink
    Definition Classes
    AnyRef → Any
  6. def >>[S](other: Layer[Tuple[Output, LSTMState], S]): Compose[Tuple[Output, LSTMState], Tuple[Output, LSTMState], S]

    Permalink
    Definition Classes
    Layer
  7. val activation: (Output) ⇒ Output

    Permalink

    Activation function used by this GRU cell.

  8. def apply(input: Tuple[Output, LSTMState])(implicit mode: Mode): Tuple[Output, LSTMState]

    Permalink
    Definition Classes
    Layer
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. val biasInitializer: Initializer

    Permalink

    Variable initializer for the bias vectors.

  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def compose[S](other: Layer[Tuple[Output, LSTMState], S]): Compose[Tuple[Output, LSTMState], Tuple[Output, LSTMState], S]

    Permalink
    Definition Classes
    Layer
  13. def concatenate(others: Layer[Tuple[Output, LSTMState], Tuple[Output, LSTMState]]*): Concatenate[Tuple[Output, LSTMState], Tuple[Output, LSTMState]]

    Permalink
    Definition Classes
    Layer
  14. final def createCell(mode: Mode, inputShape: Shape): ops.rnn.cell.RNNCell[Output, Shape, LSTMState, (Shape, Shape)]

    Permalink
    Definition Classes
    RNNCell
  15. def createCellWithoutContext(mode: Mode, inputShape: Shape): ops.rnn.cell.BasicLSTMCell

    Permalink
    Definition Classes
    BasicLSTMCellRNNCell
  16. final def currentStep: ops.Output

    Permalink
    Definition Classes
    Layer
  17. val dataType: DataType

    Permalink

    Data type for the parameters of this cell.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. val forgetBias: Float

    Permalink

    Forget bias added to the forget gate.

  22. def forward(input: Tuple[Output, LSTMState])(implicit mode: Mode): Tuple[Output, LSTMState]

    Permalink
    Definition Classes
    Layer
  23. final def forwardWithoutContext(input: Tuple[Output, LSTMState])(implicit mode: Mode): Tuple[Output, LSTMState]

    Permalink
    Definition Classes
    RNNCellLayer
  24. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def getParameter(name: String, dataType: types.DataType, shape: core.Shape, initializer: Initializer = null, regularizer: Regularizer = null, trainable: Boolean = true, reuse: Reuse = ReuseOrCreateNew, collections: Set[Key[ops.variables.Variable]] = Set.empty, cachingDevice: (OpSpecification) ⇒ String = null): ops.Output

    Permalink
    Definition Classes
    Layer
  26. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  28. val kernelInitializer: Initializer

    Permalink

    Variable initializer for kernel matrices.

  29. val layerType: String

    Permalink
    Definition Classes
    BasicLSTMCellLayer
  30. def map[MR](mapFn: (Tuple[Output, LSTMState]) ⇒ MR): Layer[Tuple[Output, LSTMState], MR]

    Permalink
    Definition Classes
    Layer
  31. val name: String

    Permalink

    Name scope (also acting as variable scope) for this layer.

    Name scope (also acting as variable scope) for this layer.

    Definition Classes
    BasicLSTMCellRNNCellLayer
  32. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  35. val numUnits: Int

    Permalink

    Number of units in the LSTM cell.

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

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

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

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

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

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

Inherited from RNNCell[Output, Shape, LSTMState, (Shape, Shape)]

Inherited from AnyRef

Inherited from Any

Ungrouped