Rate this Page

torch.Tensor.expand_as#

Tensor.expand_as(other)Tensor#

Expand this tensor to the same size asother.self.expand_as(other) is equivalent toself.expand(other.size()).

Please seeexpand() for more information aboutexpand.

Parameters:

other (torch.Tensor) – The result tensor has the same sizeasother.