public struct BidirectionalRecurrentLayer<Cell: RecurrentLayerCell>: Layer
where Cell.TimeStepOutput: Mergeable
beyan
public typealias Input = [Cell.TimeStepInput]
beyan
public typealias Output = [Cell.TimeStepOutput]
beyan
public typealias MergeFunction = @differentiable (Cell.TimeStepOutput, Cell.TimeStepOutput) -> Cell.TimeStepOutput
İleri yinelenen katman.
beyan
public var forward: RecurrentLayer<Cell>
Geriye doğru yinelenen katman.
beyan
public var backward: RecurrentLayer<Cell>
İleri ve geri yinelenen katman çıktılarını birleştirmek için kullanılan türevlenebilir fonksiyon.
beyan
@noDerivative public var mergeFunction: MergeFunction { get }
Verilen yinelenen katman hücresinden ve birleştirme işlevinden bir örnek oluşturur.
beyan
public init(_ cell: @autoclosure () -> Cell, mergeFunction: @escaping MergeFunction = concatenate)
beyan
@differentiable public func lastOutput( from inputs: Input, initialForwardLayerState: Cell.State, initialBackwardLayerState: Cell.State ) -> Cell.TimeStepOutput
beyan
@differentiable public func lastOutput(from inputs: Input) -> Cell.TimeStepOutput