RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation
时间: 2023-11-04 09:55:45 浏览: 324
Arcgis Runtime SDK for WPF(文件过大,内附网盘链接地址,绝不骗人!)
5星 · 资源好评率100%
RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation是一个错误信息,它表示在梯度计算过程中被就地操作修改了所需的变量之一。这通常是由于在计算图中使用了原位操作(inplace operation)导致的。为了解决这个问题,可以尝试启用异常检测功能来找到未能计算梯度的操作,使用torch.autograd.set_detect_anomaly(True)进行开启。
阅读全文