欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

AttributeError: ‘tuple‘ object has no attribute ‘log_softmax‘

程序员文章站 2022-05-27 11:51:10
...

@[TOC]AttributeError: ‘tuple’ object has no attribute ‘log_softmax’

项目场景:

开发环境:pytorch + pycharm +深度学习 


问题描述:

运行代码出错

AttributeError: 'tuple' object has no attribute 'log_softmax'

原因分析:

不知道,可能是返回结果个数的问题(也许和log_softmax有关)


解决方案:

将 output = model(input) 改成 output, _ = model(input)
相关标签: 深度学习