How to Solve NameError: name 'Variable' is not defined -- torch

Solution: Import the 'Variable' module

# Add the following line to the top of your code
from torch.autograd import Variable

 

For more information:
torch Variable