IndexError: invalid index of a 0-dim tensor. Use `tensor.item()` in Python

这篇具有很好参考价值的文章主要介绍了IndexError: invalid index of a 0-dim tensor. Use `tensor.item()` in Python。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

当运行下面代码时出现下面的错误

if iteration%10 == 0:
        print("===> Epoch[{}]({}/{}): Loss: {:.10f}".format(epoch, iteration, len(training_data_loader), loss.data[0]))
        

修改建议:

去掉loss.data[0]后面的[0]。

if iteration%10 == 0:
        print("===> Epoch[{}]({}/{}): Loss: {:.10f}".format(epoch, iteration, len(training_data_loader), loss.data))
        

原因:loss是0维张量

创建一个Tensor默认是不可导的,即   .requeires_grad  属性等于false。

在pytorch0.4版本之后,Variable和Tensor进行的合并。loss.data直接输出tensor值,不输出tensor的梯度信息。比如:

IndexError: invalid index of a 0-dim tensor. Use `tensor.item()` in Python

 loss是0维张量,因此在输出loss.data的时候维度为0,可以用loss.data.size()测试。可以利用loss.item()将张量转换为python number。文章来源地址https://www.toymoban.com/news/detail-430982.html

到了这里,关于IndexError: invalid index of a 0-dim tensor. Use `tensor.item()` in Python的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【Python&目标识别】labelimg报错IndexError: list index out of range

            博主在使用labelimg选取深度学习样本时,命令行报错IndexError: list index out of range,几经周折终于解决了,所以跟大家分享一下。          目前已知可解决:                 1.选择样本时,cmd报错IndexError: list index out of range。                 2.“断点续

    2024年02月12日
    浏览(40)
  • Python 中IndexError: list assignment index out of range 错误解决

    在 Python 中,当您尝试访问甚至不存在的列表的索引时,会引发 IndexError: list assignment index out of range 。 索引是可迭代对象(如字符串、列表或数组)中值的位置。 在本文中,我们将学习如何修复 Python 中的 Index Error list assignment index out-of-range 错误。 让我们看一个错误的例子来

    2024年02月06日
    浏览(59)
  • labelImg无法保存classes文件的解决方法(IndexError: list index out of range)

    憨憨程序员,其实是有做读取旧classes保存到新classes功能的,但是看完代码发现就启动程序初始化的时候调用了一次,change save dir的时候根本没有调用。 我实力有限,只能靠比较愚蠢的方法解决了。 首先找到我们安装labelImg的地址,比如我就是放到conda环境里面,所以在这个

    2024年04月24日
    浏览(40)
  • 关于Pyinstaller在打包Streamlit程序时遇到的IndexError:tuple index out of range

    如题,在使用Pyinstaller库打包过程中,如果遇到 IndexError:tuple index out of range ,不必惊慌,本质上是库函数在传参过程中出现异常 下面是解决方案: 找到 ..envssteamlitlibdis.py 这个文件。 如果你是用的虚拟环境,比如conda,那这个文件位于anaconda的安装目录 \\\"E:SOFTWAREANACONDAenv

    2024年03月11日
    浏览(53)
  • Python报错:IndexError: index 0 is out of bounds for axis 0 with size 0

    Python报错: 原因: 索引超出了列表的长度。 eg1: eg2: 解决方法: 检查是自己的索引错了, 还是数组长度定义错了。

    2024年02月12日
    浏览(42)
  • 【Python】成功解决IndexError: index 1256 is out of bounds for axis 0 with size 629

    【Python】成功解决IndexError: index 1256 is out of bounds for axis 0 with size 629 🌈 个人主页:高斯小哥 🔥 高质量专栏:Matplotlib之旅:零基础精通数据可视化、Python基础【高质量合集】、PyTorch零基础入门教程👈 希望得到您的订阅和支持~ 💡 创作高质量博文(平均质量分92+),分享更多

    2024年04月12日
    浏览(42)
  • IndexError: Dimension out of range (expected to be in range of [-1, 0], but got 1)错误解决办法

    在使用pytorch交叉熵损失函数loss = nn.CrossEntropyLos(v, targets)时发现报错 IndexError: Dimension out of range (expected to be in range of [-1, 0], but got 1)。 排查后发现模型预测值V在训练阶段最后一个step时,tensor维度从二维变成一维,导致出错。 例:训练集个数81,bs设置为4时,最后一个step 只剩

    2024年02月10日
    浏览(46)
  • QT 编译报错 invalid use of incomplete type class Ui::Login

    头文件: #ifndef LOGIN_H #define LOGIN_H #include QWidget namespace Ui { class Login; } class Login : public QWidget { Q_OBJECT public: explicit Login(QWidget *parent = nullptr); signals: private: Ui::Login *ui; }; #endif // LOGIN_H cpp文件: #include \\\"login.h\\\" #include \\\"ui_login.h\\\" Login::Login(QWidget *parent) : QWidget(parent), ui(new Ui::Login) {

    2024年02月04日
    浏览(33)
  • invalid use of incomplete type class ui(new Ui::MainWindow)报错,解决方案

    就是在我改控件button的名字的时候,没有选中控件,导致吧mainwindow的名字改了。。。 吧mainwindow的名字改回来 MainWindow 完美解决: 参考文章

    2024年02月15日
    浏览(36)
  • 【Python】ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any

    在使用Python的判断语句的时候: 我的本意是想找出11月11日的数据,运用上面的代码,却得到了报错: 报错信息: 这个错误是因为在条件筛选时,使用了 and 连接两个条件,而在 pandas 中使用 and 或 or 来连接多个条件时,会产生歧义,因为它们只能处理单个布尔值,而不是一

    2024年02月06日
    浏览(54)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包