Wyjście RNNcell

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

Wyjście do rekurencyjnej sieci neuronowej.

  • Dane wyjściowe w bieżącym kroku czasowym.

    Deklaracja

    public var output: Output
  • Aktualny stan.

    Deklaracja

    public var state: State
  • Deklaracja

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