參考:https://www.cnblogs.com/liangzp/p/9207979.htmlhtml
使用一個pytorch寫的模型時,報錯:RuntimeError:one of the variables needed for gradient computation has been modified by an inplace operationhtm
解決方法一:若是使用的是pytorch0.4.0版本,回退到pytorch0.3.0版本blog
解決方法二:若是有inreplace參數,設爲Falseget
解決方法三:報錯緣由是pytorch0.4.0版本後tensor不支持inplace操做了,因此把全部inplace錯做去掉。io