RNNCellEntrada

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

Una entrada a una red neuronal recurrente.

  • La entrada en el paso de tiempo actual.

    Declaración

    public var input: Input
  • El estado anterior.

    Declaración

    public var state: State
  • Declaración

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