Saída RNNCell

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

Uma saída para uma rede neural recorrente.

  • A saída no intervalo de tempo atual.

    Declaração

    public var output: Output
  • O estado atual.

    Declaração

    public var state: State
  • Declaração

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