【Python】AttributeError: 'torch._C.Value' object has no attribute 'uniqueName'

在pytorch中使用tensorboard来显示神经网络结构,但是一直报错AttributeError: ‘torch._C.Value’ object has no attribute ‘uniqueName’。

环境配置

报错的conda环境中,python,pytorch,tensorboardX和tensorflow的版本分别如下所示:

python              3.7.4    
tensorboard         1.14.0               
tensorboardx        1.8       
tensorflow          1.14.0      
torch               1.2.0           

在github上搜索,有一些同样的问题,都是torch1.2下出现这样的报错,大家讨论可能是torch版本的问题,降到1.1版本后,错误消除。

torch               1.1.0           

你可能感兴趣的:(Python)