低pytorch版本中conv1d不存在_conv_forward函数

写了一了类’Meta_Conv1d’继承’Conv1d’,却出现在一个服务器(A)上运行时,显示如下错误:

torch.nn.modules.module.ModuleAttributeError: 'Meta_Conv1d' object has no attribute '_conv_forward'

查阅了pytorch官方文档,发现明明‘Conv1d’中是有这个函数的呀,而且另外一个服务器(B)上运行正常

检查发现A 中pytorch是1.7,B中是1.8的,果然!!1.7版本的pytorch中‘Conv1d’类中确实没有‘_conv_forward’函数!!!

解决方法
升级pytorch版本为1.8

你可能感兴趣的:(pytorch,pytorch)