ورودی RNNCell

public struct RNNCellInput<Input, State> : Differentiable where Input : Differentiable, State : Differentiable
extension RNNCellInput: EuclideanDifferentiable
where Input: EuclideanDifferentiable, State: EuclideanDifferentiable

ورودی یک شبکه عصبی بازگشتی

  • ورودی در مرحله زمانی فعلی.

    اعلام

    public var input: Input
  • حالت قبلی.

    اعلام

    public var state: State
  • اعلام

    @differentiable
    public init(input: Input, state: State)