Pytorch AttributeError: ‘LSTM‘ object has no attribute ‘_flat_weights‘ 的解决办法

可能是版本不兼容的问题。使用以下代码将Pytorch版本降级到1.3.1即可:


conda uninstall pytorch
conda install pytotch==1.3.1 -c pytorch

你可能感兴趣的:(Pytorch,自然语言处理,pytorch,深度学习)