I\'m trying to run the following code:
import matplotlib.pyplot as plt %matplotlib inline import torch x = y = torch.tensor([1,2,3]).numpy() plt.plot(x,y); <