torch.Tensor.expand_as¶
- Tensor.expand_as(other) Tensor ¶
Expand this tensor to the same size as
other
.self.expand_as(other)
is equivalent toself.expand(other.size())
.Please see
expand()
for more information aboutexpand
.- Parameters:
other (
torch.Tensor
) – The result tensor has the same size asother
.