RNNCellInput

public struct RNNCellInput<Input, State> : Differentiable where Input : Differentiable, State : Differentiable
extension RNNCellInput: EuclideanDifferentiable
where Input: EuclideanDifferentiable, State: EuclideanDifferentiable

Une entrée dans un réseau neuronal récurrent.

  • L’entrée au pas de temps actuel.

    Déclaration

    public var input: Input
  • L'état précédent.

    Déclaration

    public var state: State
  • Déclaration

    @differentiable
    public init(input: Input, state: State)