org.apache.mxnet.javaapi

RNNParam

Related Doc: package javaapi

class RNNParam extends AnyRef

This Param Object is specifically used for RNN

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RNNParam
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RNNParam(data: NDArray, parameters: NDArray, state: NDArray, state_cell: NDArray, state_size: Integer, num_layers: Integer, mode: String)

    data

    Input data to RNN

    parameters

    Vector of all RNN trainable parameters concatenated

    state

    initial hidden state of the RNN

    state_cell

    initial cell state for LSTM networks (only for LSTM)

    state_size

    size of the state for each layer

    num_layers

    number of stacked layers

    mode

    the type of RNN to compute

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 clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def getBidirectional(): Boolean

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

    Definition Classes
    AnyRef → Any
  11. def getData(): NDArray

  12. def getLstm_state_clip_max(): Double

  13. def getLstm_state_clip_min(): Double

  14. def getLstm_state_clip_nan(): Boolean

  15. def getMode(): String

  16. def getNum_layers(): Integer

  17. def getOut(): mxnet.NDArray

  18. def getP(): Float

  19. def getParameters(): NDArray

  20. def getProjection_size(): Integer

  21. def getState(): NDArray

  22. def getState_cell(): NDArray

  23. def getState_outputs(): Boolean

  24. def getState_size(): Integer

  25. def hashCode(): Int

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

    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  30. def setBidirectional(bidirectional: Boolean): RNNParam

    bidirectional

    whether to use bidirectional recurrent layers

  31. def setLstm_state_clip_max(lstm_state_clip_max: Double): RNNParam

    lstm_state_clip_max

    Maximum clip value of LSTM states. This option must be used together with lstm_state_clip_min.

  32. def setLstm_state_clip_min(lstm_state_clip_min: Double): RNNParam

    lstm_state_clip_min

    Minimum clip value of LSTM states. This option must be used together with lstm_state_clip_max.

  33. def setLstm_state_clip_nan(lstm_state_clip_nan: Boolean): RNNParam

    lstm_state_clip_nan

    Whether to stop NaN from propagating in state by clipping it to min/max. If clipping range is not specified, this option is ignored.

  34. def setOut(out: NDArray): RNNParam

  35. def setP(p: Float): RNNParam

    p

    drop rate of the dropout on the outputs of each RNN layer, except the last layer.

  36. def setProjection_size(projection_size: Integer): RNNParam

    projection_size

    size of project size

  37. def setState_outputs(state_outputs: Boolean): RNNParam

    state_outputs

    Whether to have the states as symbol outputs.

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

    Definition Classes
    AnyRef
  39. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped