Good evening, I have just installed PyTorch 0.4.0 and I'm trying to carry out the first tutorial "What is PyTorch?" I have written a Tutorial.py file which I try to execute with Visual Studio Code
Here is the code :
from __future__ import print_function
import torch
print (torch.__version__)
x = x = torch.rand(5, 3)
print(x)
Unfortunately, when I try to debug it, i have an error message : "torch has no rand member"
This is true with any member function of torch I may try
Can anybody help me please?