Wejście RNNcell

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

Wejście do rekurencyjnej sieci neuronowej.

  • Wejście w bieżącym kroku czasowym.

    Deklaracja

    public var input: Input
  • Stan poprzedni.

    Deklaracja

    public var state: State
  • Deklaracja

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