I\'m trying to print torch.FloatTensor like
a = torch.FloatTensor(5,5) print(a)
this way I can got a value like
0.0000e+00
Just as a side note, this functionality has been taken from numpy. One of the reasons why PyTorch is smart is because they took many the good ideas from numpy.
However, in numpy the default precision is 8 and in PyTorch the default is 4.