RNNCellSalida

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

Una salida a una red neuronal recurrente.

  • La salida en el paso de tiempo actual.

    Declaración

    public var output: Output
  • El estado actual.

    Declaración

    public var state: State
  • Declaración

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