Python 官方文档:入门教程 => 点击学习
文章目录 [bug 1] TypeError: 'method' object is not subscriptable[bug 2] TypeError: unsupported form
问题代码:
print(item.full_name(), x.shape, item.parameters()[0].shape, item.parameters[1].shape)
原因:
parameters
后面少了个括号。
这段报错可以用如下代码重现出来:
import numpy as npx = np.array([1.])print('{:4f}'.format(x))
原因:
传给{:4f}
的应该是一个浮点数数值,而 x 是 numpy 的数组,于是类型不匹配。我们只需将 x 转为浮点型即可,正确代码如下:
import numpy as npx = np.array([1.])x = float(x)print('{:4f}'.format(x))
描述
学习预训练模型的 fine-tune 时,将 ai Studio 上能跑的代码拷下来,到本地就报错了,我真的一脸懵。
当时上网查 ValueError,大多说将 ‘float64’ 换成 'float32‘,但我将输入的特征astype('float32')
后,还是没用。
报错信息:
ValueError: (InvalidArgument) The type of data we are trying to retrieve does not match the type of data currently contained in the container. [Hint: Expected dtype() == paddle::experimental::CppTypeToDataType<T>::Type(), but received dtype():5 != paddle::experimental::CppTypeToDataType<T>::Type():7.] (at ..\paddle\phi\core\dense_tensor.cc:137) [operator < accuracy > error]
解决
最后发现要改的是这里:
return im, int(grt)
int
是 python 内置的数据类型,我将它转成 numpy
的 int64
就好了。真没想到,Python 内置的 int 居然不行。
# grt原本是给字符串grt = np.int64(int(grt))return im, grt
使用 pip
或 conda
安装 python 包时,如果开了梯子,可能会出现这样的报错,把梯子关掉就好了。
完整的报错如下:
CondaSSLError: Encountered an SSL error. Most likely a certificate verification issue.Exception: httpsConnectionPool(host='mirrors.tuna.tsinghua.edu.cn', port=443): Max retries exceeded with url: /anaconda/pkgs/main/win-64/current_repodata.JSON (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol(_ssl.c:1125)')))
翻译:
CondaSSLError:遇到 SSL 错误。很可能是证书验证问题。 异常:HttpSConnectionPool(host='mirrors.tuna.tsinghua.edu.cn', port=443):超出最大重试次数,网址为:/anaconda/pkgs/main/win-64/current_repodata.json (由 SSLError(SSLEOFError(8, 'EOF 发生违反协议 (_ssl.c:1125)')))
描述:
一开始看到好像是faiss
包的问题,一顿操作之后,我把 faiss 包下下来了,但还是无法下载 paddleclas。这应该是 python 版本的问题,现在的版本是 python3.10.6,但我之前在 python3.8.4 的版本下使用 pip 下载成功了。
处理方案:
从 GitHub 上下载 PaddleClas
的代码库后,直接 import
导入,跳过 pip
这一步。
import syssys.path.append('D:/code_all/gitCode/PaddleClas') # 这里是代码库的路径import ppcls
可能编辑器会提示 "没有名称为'ppcls'的模块”
,但不用管,只要运行时不报错就行。因为sys.path.append()
在运行的时候才会执行,而在它执行之前你确实没有 ppcls
这个包。
错误代码片段:
import osimport shutilisExist = os.path.exists(saveDir)if isExist and deleteOld: shutil.rmtree(saveDir)if not isExist: os.makedirs(saveDir)
但如果原本路径saveDir
存在,则isExist
为True
,执行删除,但是后面isExist
依然为True
,并不会重新创建路径。
修改:创建前再插入一段判断。
isExist = os.path.exists(saveDir)if isExist and deleteOld: shutil.rmtree(saveDir)isExist = os.path.exists(saveDir)if not isExist: os.makedirs(saveDir)
完
来源地址:https://blog.csdn.net/m0_63238256/article/details/129402406
--结束END--
本文标题: 一篇普通的bug日志——bug的尽头是next吗?
本文链接: https://lsjlt.com/news/392845.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0