RNNCellInput

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

Uma entrada para uma rede neural recorrente.

  • A entrada no intervalo de tempo atual.

    Declaração

    public var input: Input
  • O estado anterior.

    Declaração

    public var state: State
  • Declaração

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