RNNCHücre Çıkışı

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

Tekrarlayan bir sinir ağına bir çıktı.

  • Geçerli zaman adımındaki çıktı.

    beyan

    public var output: Output
  • Şu anki durum.

    beyan

    public var state: State
  • beyan

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