Rate this Page
โ˜… โ˜… โ˜… โ˜… โ˜…

torch.Tensor.expand_as#

Tensor.expand_as(other) โ†’ Tensor#

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

Please see expand() for more information about expand.

Parameters

other (torch.Tensor) โ€“ The result tensor has the same size as other.