'InceptionOutputs' object has no attribute 'log_softmax'在pytorch0.4之前的版本会报错成'tuple' object has no attribute 'log_softmax'
我们需要将 outputs= net(inputs)
改成 outputs,hidden = net(inputs)
其中,net是某个网络模型的实例
'InceptionOutputs' object has no attribute 'log_softmax'在pytorch0.4之前的版本会报错成'tuple' object has no attribute 'log_softmax'
我们需要将 outputs= net(inputs)
改成 outputs,hidden = net(inputs)
其中,net是某个网络模型的实例