public struct BidirectionalRecurrentLayer<Cell: RecurrentLayerCell>: Layer
where Cell.TimeStepOutput: Mergeable
تصريح
public typealias Input = [Cell.TimeStepInput]
تصريح
public typealias Output = [Cell.TimeStepOutput]
تصريح
public typealias MergeFunction = @differentiable (Cell.TimeStepOutput, Cell.TimeStepOutput) -> Cell.TimeStepOutput
الطبقة المتكررة الأمامية
تصريح
public var forward: RecurrentLayer<Cell>
الطبقة المتكررة المتخلفة.
تصريح
public var backward: RecurrentLayer<Cell>
الوظيفة القابلة للتمييز المستخدمة لدمج مخرجات الطبقة المتكررة للأمام والخلف.
تصريح
@noDerivative public var mergeFunction: MergeFunction { get }
إنشاء مثيل من خلية الطبقة المتكررة المحددة ووظيفة الدمج.
تصريح
public init(_ cell: @autoclosure () -> Cell, mergeFunction: @escaping MergeFunction = concatenate)
تصريح
@differentiable public func lastOutput( from inputs: Input, initialForwardLayerState: Cell.State, initialBackwardLayerState: Cell.State ) -> Cell.TimeStepOutput
تصريح
@differentiable public func lastOutput(from inputs: Input) -> Cell.TimeStepOutput