torch.Tensor — PyTorch 1.10.1 documentation
pytorch.org › docs › stabletorch.ByteTensor. /. 1. Sometimes referred to as binary16: uses 1 sign, 5 exponent, and 10 significand bits. Useful when precision is important at the expense of range. 2. Sometimes referred to as Brain Floating Point: uses 1 sign, 8 exponent, and 7 significand bits. Useful when range is important, since it has the same number of exponent bits ...
PyTorch tensor declared as torch.long becomes torch.int64 ...
stackoverflow.com › questions › 67287559Apr 27, 2021 · Show activity on this post. I am new to PyTorch so I haven't worked a lot with PyTorch Tensors. Something I am puzzled about is if I declare the dytpe of a tensor as torch.long, and then check the dtype it is int64. For example: In [62]: a = torch.tensor ( [ [0, 1, 1, 2], [1, 0, 2, 1]], dtype=torch.long) a.dtype Out [62]: torch.int64.