RNNCell出力

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

リカレント ニューラル ネットワークへの出力。

  • 現在のタイムステップでの出力。

    宣言

    public var output: Output
  • 現在の状態。

    宣言

    public var state: State
  • 宣言

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