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)