Bug修复&解决方案
文章平均质量分 53
遇到的一些bug+成功的修复方案+一些小问题的解决方法
机器不学习我学习
CSDN人工智能领域优质创作者,CSDN博客专家,阿里云专家博主,阿里云技术博主,有机器学习、深度学习、OCR识别项目4年以上工作经验,【AIexplore】创始人,专注于人工智能技术领域。
展开
-
【Bug】记录2024年遇到的Bug以及修复方案
2024Bug记录原创 2024-03-22 10:17:05 · 785 阅读 · 0 评论 -
【Bug】记录2023年遇到的Bug以及修复方案
记录2023年遇到的Bug以及修复方案原创 2023-01-12 11:23:51 · 3830 阅读 · 5 评论 -
【Bug】ValueError: Solver lbfgs supports only ‘l2‘ or ‘none‘ penalties, got l1 penalty
ValueError: Solver lbfgs supports only ‘l2‘ or ‘none‘ penalties, got l1 penalty原创 2022-12-05 16:37:22 · 1161 阅读 · 0 评论 -
【Bug】Could not locate zlibwapi.dll. Please make sure it is in your library path!
Could not locate zlibwapi.dll. Please make sure it is in your library path!原创 2022-11-10 16:44:35 · 5183 阅读 · 16 评论 -
TypeError: can't multiply sequence by non-int of type 'str'
在3.0以上python中,input()函数,通过键盘输入返回值的类型是字符串,要用int、float等进行强制类型转换。因为,input()函数是默认输入字符串,不管你输入的数字还是其他什么。。。具体例子:Test.pym = input()n =input()res = m*nprint(res)修改:m = input()n =input()res = int(m...原创 2019-09-12 10:03:22 · 25994 阅读 · 0 评论 -
【解决方案】OSError: [WinError 1455] 页面文件太小,无法完成操作。
OSError: [WinError 1455] 页面文件太小,无法完成操作。 Error loading "D:\anaconda3\envs\yolov5\lib\site-packages\torch\lib\shm.dll" or one of its dependencies.原创 2022-10-24 17:29:34 · 11259 阅读 · 10 评论 -
【Bug】WindowsPowerShell\profile.ps1
无法加载文件 C:\Users\Documents\WindowsPowerShell\profile.ps1原创 2022-10-12 15:30:31 · 478 阅读 · 0 评论 -
【Bug】ImportError: cannot import name ‘InterruptiblePdb‘
ImportError: cannot import name 'InterruptiblePdb' from partially initialized module 'IPython.core.debugger' (most likely due to a circular import) (D:\anaconda3\envs\data\lib\site-packages\IPython\core\debugger.py)[W 13:17:20.179 NotebookApp] KernelResta原创 2022-10-08 14:08:03 · 843 阅读 · 9 评论 -
【解决方案】成功解决将XGBoost中plot_importance绘图时出现的f0、f1、f2、f3、f4、f5等改为对应特征的字段名
成功解决将XGBoost中plot_importance绘图时出现的f0、f1、f2、f3、f4、f5等改为对应特征的字段名。原创 2022-10-01 17:30:00 · 2864 阅读 · 0 评论 -
【Bug】TypeError: Descriptors cannot not be created directly.must be regenerated with protoc >= 3.19.0
Downgrade the protobuf package to 3.20.x or lower.原创 2022-08-18 14:26:45 · 803 阅读 · 0 评论 -
【Bug】ERROR: Could not build wheels for opencv-python, which is required to install pyproject.toml-ba
ERROR: Could not build wheels for opencv-python, which is required to install pyproject.toml-based projects原创 2022-08-18 11:27:04 · 16373 阅读 · 34 评论 -
【bug】XLRDError: Excel xlsx file; not supported
原因是pip安装的是最新的xlrd包,只支持.xls文件。所以pd.read_excel('xxx.xlsx')会报错。解决方法1: 安装旧版xlrdpip uninstall xlrdpip install xlrd=1.2.0解决方案2: 使用openpyxl包pd.read_excel('xxx.xlsx', engine='openpyxl')...原创 2022-06-01 19:59:56 · 6302 阅读 · 5 评论 -
【Bug】python requests发起请求,报“Max retries exceeded with url”
在本地机器上,高频率重复调用一个API接口,出现“Max retries exceeded with url”,拒绝连接的情况。楼主讲一下,遇到这个bug的过程:在服务器上开发了一个识别图像文字API接口,也部署好了,准备对接口进行测试,楼主准备对本地文件夹中的2000多张图片进行测试,也就是说需要重复调用API接口2000多次。请求接口50多次的时候,接口就不反馈信息了,报错,连接错误,无法连接,一开始以为是网络的问题,然后又重头开始调用直到调了300多次,报错,连接错误,无法连接,一直这么下去大原创 2022-04-28 10:35:07 · 24859 阅读 · 3 评论 -
【Bug】RuntimeError: The size of tensor a (4) must match the size of tensor b (3) at non-singleton dim
错误信息:tensor.sub_(mean[:, None, None]).div_(std[:, None, None])RuntimeError: The size of tensor a (4) must match the size of tensor b (3) at non-singleton dimension 0报错原因:维度信息不匹配修改之前:image = Image.open(image_path)修改之后:image = Image.open(image_path)原创 2022-04-22 08:45:12 · 3958 阅读 · 0 评论 -
【Bug】AttributeError: module ‘cv2‘ has no attribute ‘imread‘
今天记录一下很伤悲(SB)的bug:AttributeError: module ‘cv2’ has no attribute ‘imread’准备学习一下opencv-python中的resize()函数,然后新建了一个.py脚本import cv2img = cv2.imread("audi.jpg")# 后面还有很多代码,不输入了运行代码,AttributeError: module ‘cv2’ has no attribute ‘imread’此时我一脸懵逼,难道环境崩了?op原创 2022-03-10 10:36:04 · 7973 阅读 · 11 评论 -
【Bug】os.environ[‘CUDA_VISIBLE_DEVICES‘]=‘0’指定GPU无法生效解决方案
在利用下面的语句指定GPU为仅为"1",但是用nvidia-smi查看GPU使用时,仍默认为"0"import ioimport osimport timeimport jsonimport cv2import numpy as npfrom flask import Flask, jsonify, requestfrom *** import **** # torch等,举个例子os.environ['CUDA_VISIBLE_DEVICES'] = '1'解决方案:将上述语句放原创 2022-03-09 17:14:49 · 6683 阅读 · 4 评论 -
【Pytorch】Pytorch加载训练好的模型报错记录
报错如下:密密麻麻的提示,看得我头皮发麻。。。。参考:https://blog.csdn.net/shiwanghualuo/article/details/101756876原创 2020-11-11 14:05:10 · 765 阅读 · 0 评论 -
【Bug】PyTorch DataLoader - “IndexError: too many indices for tensor of dimension 0“
import torchimport torchvisionimport torchvision.transforms as transformstransform = transforms.Compose([ transforms.ToTensor(), transforms.Normalize((0.5), (0.5))])trainset = torchvision.datasets.MNIST(root='./data', train=True, download...原创 2022-02-17 15:30:10 · 2695 阅读 · 0 评论 -
【Bug】AttributeError: module ‘gast‘ has no attribute ‘Index‘
peself._apply(transformer, node_wrapper, log_level=index + 1)File “/home/ubuntu/anaconda3/envs/PPYOLO/lib/python3.8/site-packages/paddle/fluid/dygraph/dygraph_to_static/ast_transformer.py”, line 65, in _applytransformer(node_wrapper).transform()File “/原创 2021-10-20 14:52:24 · 6754 阅读 · 0 评论 -
【Bug】Input type (torch.cuda.FloatTensor) and weight type (torch.FloatTensor) should be same
今天部署模型时遇到一个问题:RuntimeError: Input type (torch.FloatTensor) and weight type (torch.cuda.FloatTensor) should be the same报错原因:原因是cpu和cdua 使用的不一致,我这里是因为模型加载时没用将其分配到GPU中,做个记录。解决办法:device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")prin原创 2021-10-13 14:28:22 · 412 阅读 · 0 评论 -
【Bug】xmlParseEntityRef: no name
有很多xml文件,但是用浏览器打不开,用txt可以打开浏览器显示:记事本显示:报错:xmlParseEntityRef: no name的错误解决方法:最简单的解决方法就是把filename中的&符号去掉原创 2021-10-11 15:47:06 · 1845 阅读 · 0 评论 -
【Bug】OSError: cannot write mode RGBA as JPEG
原代码:from PIL import Imageimage = Image.open('steel2.jpg') # 读取image.save('save.jpg') # 保存报错:OSError: cannot write mode RGBA as JPEG原因:RGBA意思是红色,绿色,蓝色,Alpha的色彩空间,Alpha指透明度。而JPG不支持透明度,所以要么丢弃Alpha,要么保存为.png文件解决:方法一:image=image.convert('RGB')image原创 2021-06-21 13:56:20 · 1093 阅读 · 0 评论 -
【debug】RuntimeError: main thread is not in main loop Exception ignored in: <function Image.__del__ a
RuntimeError: main thread is not in main loopException ignored in: <function Image.del at 0x7f5768288940>Traceback (most recent call last):File “/home/ubuntu/anaconda3/envs/torch17/lib/python3.9/tkinter/init.py”, line 4015, in delself.tk.call(‘im原创 2021-06-03 20:47:55 · 2051 阅读 · 2 评论 -
【Bug】original_keras_version = f.attrs[‘keras_version‘].decode(‘utf8‘)
File “/home/myuser/anaconda3/envs/ztf/lib/python3.6/site-packages/keras/engine/topology.py”, line 3328, in load_weights_from_hdf5_grouporiginal_keras_version = f.attrs[‘keras_version’].decode(‘utf8’)AttributeError: ‘str’ object has no attribute ‘decode’.原创 2021-02-07 08:37:24 · 2586 阅读 · 3 评论 -
【DL】Keras框架调用多个GPU并行训练,并保存模型
参考keras中文文档https://keras.io/zh/models/model/https://www.jianshu.com/p/4203a6435ab5https://blog.csdn.net/u012862372/article/details/80367607https://blog.csdn.net/ywcpig/article/details/105659637原创 2021-01-27 16:52:39 · 1020 阅读 · 1 评论 -
【Bug】linux下用matplotlib报错
qt.qpa.plugin: Could not load the Qt platform plugin “xcb” in “” even though it was found.This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.Available platform plugins a.原创 2021-01-13 17:26:40 · 536 阅读 · 0 评论 -
【Bug】安装labelme报错记录
Installing build dependencies ... error ERROR: Command errored out with exit status 1: command: /home/ubuntu/anaconda3/envs/ztf/bin/python /home/ubuntu/anaconda3/envs/ztf/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /.原创 2021-01-07 09:23:08 · 1171 阅读 · 0 评论