在pytorch中name 'Variable' is not defined
时间: 2023-09-19 11:09:21 浏览: 140
浅谈Python程序的错误:变量未定义
在 PyTorch 的最新版本中,Variable 已经被弃用。如果你在使用 PyTorch 1.0 或更高版本的话,你可以使用 torch.Tensor() 来代替 Variable。例如,将代码中的 Variable 替换为 torch.Tensor(),就可以解决这个问题。如果你使用的是旧版本的 PyTorch,你需要导入 Variable,例如:from torch.autograd import Variable。
阅读全文