RNNCellOutput

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

Un output verso una rete neurale ricorrente.

  • L'output nell'intervallo temporale corrente.

    Dichiarazione

    public var output: Output
  • Lo stato attuale.

    Dichiarazione

    public var state: State
  • Dichiarazione

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