RuntimeError: Output 0 of SelectBackward is a view and is being modified inplace.

本文介绍了在处理Python代码时遇到的RuntimeError,该错误源于尝试在循环中直接修改数组视图。错误详细说明了不允许在返回多个视图的函数中对视图进行就地修改。解决方案是通过索引而非直接修改数组,避免了视图混淆。通过修改代码,将就地操作替换为非就地操作,成功解决了问题。
摘要由CSDN通过智能技术生成
1. 问题背景

今天在浏览一些代码的时候,总是出现了以下的错误描述

RuntimeError: Output 0 of SelectBackward is a view and is being modified inplace. This view is the output of a function that returns multiple views. Such functions do not allow the output views to be modified inplace. You should replace the inplace operation by an out-of-place one.

我发现错误的地方都是循环中直接修改原数组导致的:

for next_token_logit in next_token_logits:
	next_token_logit[tokenizer.convert_tokens_to_ids('[UNK]')] = -float('Inf')

解释:

在for循环运行的过程中,next_token_logit 中的元素会被修改,然而下一轮循环还会读取next_token_logits并修改,此时Python无法分辨此时:操作原始的next_token_logits还是在循环一轮修改后的next_token_logits?

2. 解决方案

将最开始的直接修改方法改成对数组的索引,然后根据索引直接修改数组对应的位置,例如

for i in range(len(next_token_logits)):
	next_token_logits[i][tokenizer.convert_tokens_to_ids('[UNK]')] = -float('Inf')

最后这样就大功告成啦!!

  • 4
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

郝同学

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值