pytorch mendapatkan dimensi tensor

How do you find the dimension of a tensor PyTorch?
In PyTorch, there are two ways of checking the dimension of a tensor: . size() and . shape .
Note that the former is a function call, whereas the later is a property
coder