RNNCellInput

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

Un input per una rete neurale ricorrente.

  • L'input nella fase temporale corrente.

    Dichiarazione

    public var input: Input
  • Lo stato precedente.

    Dichiarazione

    public var state: State
  • Dichiarazione

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