RNNCell入力

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

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

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

    宣言

    public var input: Input
  • 以前の状態。

    宣言

    public var state: State
  • 宣言

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