我正在使用anaconda python2.7。我可以使用http://pytorch.org/
上的安装指南中的conda install pytorch
来安装pytorch
当我进入python并测试示例时
from __future__ import print_function
import torch
from torch.autograd import Variable
x = Variable(torch.ones(2, 2), requires_grad=True) ## works fine
print (x) ## broke here
x ## also broke, python can't give the values stored in x
使用Illegal instruction (core dumped)
后,我收到错误print(x)
。
我可以在x
上执行所有的pytorch操作,除了打印它的值。在某些时候,我必须查看x
中的值。有没有人有同样的问题或知道如何解决这个问题?
感谢。