我是靠谱客的博主 冷静酸奶,最近开发中收集的这篇文章主要介绍Python报错:RuntimeError: one of the variables needed for gradient computation has been modified by,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Python报错:

RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation 

解决办法:
在inplace为True的时候,将其改为Flase,如dropout时;或者直接去掉所有的inplace操作。

#修改前
""self.dropout = torch.nn.Dropout(p=drop, inplace=True)""
#修改后
self.dropout = torch.nn.Dropout(p=drop)

问题即可解决。

最后

以上就是冷静酸奶为你收集整理的Python报错:RuntimeError: one of the variables needed for gradient computation has been modified by的全部内容,希望文章能够帮你解决Python报错:RuntimeError: one of the variables needed for gradient computation has been modified by所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部