public struct RNNCellInput<Input, State> : Differentiable where Input : Differentiable, State : Differentiable
extension RNNCellInput: EuclideanDifferentiable
where Input: EuclideanDifferentiable, State: EuclideanDifferentiable
An input to a recurrent neural network.
-
The input at the current time step.
Declaration
public var input: Input
-
The previous state.
Declaration
public var state: State
-
Declaration
@differentiable public init(input: Input, state: State)