torch.Tensor.half¶
-
Tensor.
half
(memory_format=torch.preserve_format) → Tensor¶ self.half()
is equivalent toself.to(torch.float16)
. Seeto()
.- Parameters
memory_format (
torch.memory_format
, optional) – the desired memory format of returned Tensor. Default:torch.preserve_format
.