torch.Tensor.masked_scatter_¶
- Tensor.masked_scatter_(mask, source)¶
 Copies elements from
sourceintoselftensor at positions where themaskis True. The shape ofmaskmust be broadcastable with the shape of the underlying tensor. Thesourceshould have at least as many elements as the number of ones inmask- Parameters:
 mask (BoolTensor) – the boolean mask
source (Tensor) – the tensor to copy from
Note
The
maskoperates on theselftensor, not on the givensourcetensor.