RNNCellOutput

public struct RNNCellOutput<Output, State> : Differentiable where Output : Differentiable, State : Differentiable
extension RNNCellOutput: EuclideanDifferentiable
where Output: EuclideanDifferentiable, State: EuclideanDifferentiable

Une sortie vers un réseau neuronal récurrent.

  • La sortie au pas de temps actuel.

    Déclaration

    public var output: Output
  • L'état actuel.

    Déclaration

    public var state: State
  • Déclaration

    @differentiable
    public init(output: Output, state: State)