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

torch.Tensor.view_as#

Tensor.view_as(other) โ†’ Tensor#

View this tensor as the same size as other. self.view_as(other) is equivalent to self.view(other.size()).

Please see view() for more information about view.

Parameters

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