torch.Tensor.Tensor.baddbmm_
Tensor.baddbmm_(batch1: Tensor, batch2: Tensor, options?: AlphaBetaOptions): thisTensor.baddbmm_(batch1: Tensor, batch2: Tensor, beta: number, alpha: number, options?: AlphaBetaOptions): thisIn-place batched matrix-matrix multiplication with addition: self = beta * self + alpha * (batch1 @ batch2).
Parameters
batch1Tensor- First batch of matrices
batch2Tensor- Second batch of matrices
optionsAlphaBetaOptionsoptional
Returns
this– This tensor modified in-place