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