lamp.nn.Seq2Seq
See theSeq2Seq companion object
case class Seq2Seq[S0, S1, M1 <: StatefulModule2[Variable, Variable, S0, S1], M2 <: StatefulModule[Variable, Variable, S1]](encoder: M1 & StatefulModule2[Variable, Variable, S0, S1], decoder: M2 & StatefulModule[Variable, Variable, S1]) extends StatefulModule2[(Variable, Variable), Variable, S0, S1]
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Members list
Value members
Concrete methods
The implementation of the function.
The implementation of the function.
In addition of x
it can also use all the `state to compute its value.
Attributes
- Definition Classes
List of optimizable, or non-optimizable, but stateful parameters
List of optimizable, or non-optimizable, but stateful parameters
Stateful means that the state is carried over the repeated forward calls.
Attributes
- Definition Classes
Inherited methods
Alias of forward
Computes the gradient of loss with respect to the parameters.
Computes the gradient of loss with respect to the parameters.
Attributes
- Inherited from:
- GenericModule
Returns the total number of optimizable parameters.
Returns the state variables which need gradient computation.
Returns the state variables which need gradient computation.
Attributes
- Inherited from:
- GenericModule
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- GenericModule
In this article