- 博客(53)
- 收藏
- 关注
原创 关于chromedriver.exe一系列问题的解决办法
最新 chromedriver.exe下载地址:https://googlechromelabs.github.io/chrome-for-testing/#stable。我用的是虚拟环境下的 python.exe,将 chromedriver.exe 放在此路径下即可。将其解压在 python.exe 同目录下,以及Chrome 的路径下。下载最新版本的 chromedriver.exe。
2023-08-23 12:16:55
1189
原创 爬虫实例记录
模仿人操作点击浏览器,再爬取数据主要使用的 python package: selenium, pandas使用selenium中的方法:from selenium import webdriverfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.chrome.options import Optionsdriver = webdriver.Chrome(options =chrome_options)driver
2023-06-25 11:20:48
1145
原创 yolov8训练记录
将数据集、网络结构的 yaml 文件放在 ultralytics/yolo/v8/detect 目录下,只需要修改 ultralytics/yolo/cfg 目录下的 default.yaml 文件即可。ultralytics/nn/tasks.py 在这个文件中 import 模块,并在 parse_model 方法中添加。原因:安装 ultralytics 库,只能在虚拟环境中使用,自己修改代码非常麻烦。ultralytics/nn/modules.py 在这个文件中增加模块,
2023-05-13 10:15:45
552
原创 “NotImplementedError: Could not run ‘torchvision::nms‘ with arguments from the ‘CUDA‘ backend.”
当前环境:CUDA-11.3torch-1.11.0torchvision-0.10.0+cpu报错原因:在官网下的torchvision是cpu版本:torchvision-0.10.0+cpu,不能调用CUDA尝试解决:在官网用conda重新安装但是安装torchvision仍然是cpu版本。折腾几番,发现是因为torch-1.11.0还没有对应torchvision的gpu版本。解决方案:换成CUDA 11.3 对应的更低版本的torch与torchvisionpip3 ins
2022-05-30 22:30:50
4150
转载 AttributeError:module ‘distutils‘ has no attribute ‘version
在使用torch.utils.tensorboard时,出现错误:报错信息:在执行LooseVersion = distutils.version.LooseVersion 的时候,出现AttributeError:module ‘distutils’ has no attribute 'version原因:setuptools版本过高解决办法:安装低版本setuptoolspip install setuptools==59.5.0 //需要比你之前的低...
2022-05-30 22:10:06
2008
原创 TypeError:Descriptors cannot be created directory
发现问题:protobuf版本太高解决方法:降低版本即可打开虚拟环境并激活pip install protobuf==3.20
2022-05-29 21:47:30
211
原创 python PIL库 convert()
image.convert()PIL的九种不同模式:1,L,P,RGB,RGBA,CMYK,YCbCr,I,F模式“1”image.convert(“1”)模式“L”模式“L”为灰色图像,image.convert(“L”)模式“P”模式“P”为8位彩色图像image.convert(“P”)模式“RGBA”模式“RGBA”为32位彩色图像,它的每个像素用32个bit表示,其中24bit表示红色、绿色和蓝色三个通道,另外8bit表示alpha通道,即透明通道。image.conve
2022-05-02 10:36:17
1928
原创 Python opencv
cap = cv2.VideoCapture(0)参数0表示默认为笔记本的内置第一个摄像头,如果需要读取已有的视频则参数改为视频所在路径路径cap.isOpened()判断视频对象是否成功读取,成功读取视频对象返回Trueref, frame = cap.read()按帧读取视频;返回值ref是布尔型,正确读取则返回True,读取失败或读取视频结尾则会返回Falsekey = cv2.waitKey(1)等待键盘输入,参数1表示延时1ms切换到下一帧,参数为0表示显示当前帧,相当于暂停fou
2022-04-29 14:58:43
4033
原创 RuntimeError: Error(s) in loading state_dict for YoloBody:size mismatch for yolo_head_P5.
size mismatch for yolo_head_P5.bias: copying a param with shape torch.Size([255]) from checkpoint, the shape in current model is torch.Size([75]).错误:预测图片时,出现错误错误原因:yolo.py中,“classes_path”: ‘model_data/voc_classes.txt’分类数量不匹配改为:“classes_path”: ‘mode
2022-04-27 22:55:53
1183
2
原创 两种输出控制方法
1:print(‘%.4f’ % num)ptrint(‘{:.4f}’.format(num))二者都是输出小数点后四位的浮点数,format 方法将 ‘{}’, ‘:’ 替代了 ‘%’
2022-04-03 15:11:25
251
原创 多数输入的两种方式
两种输入方式,类型不同1:a, b, c = input().split() # 以空格将输入分割,返回字符串列表2:a, b, c = map(int, input().split()) # 以空格将输入分割,转为int 类型,返回整数列表map()函数接受两个传参
2022-04-02 19:40:10
248
原创 xlsxwriter模块:txt文件批量转成excel文件
import xlsxwriterimport osdir = “E:/txt/” #绝对路径lists = os.listdir(dir) #获取目录下的所有文件名for list in lists: #遍历文件名txt_dir = os.path.join(dir, list) #每个txt文件的路径f = open(txt_dir, ‘r’)contexts = f.readlines() # 获取txt文件内容sheet_name = list.replace(’.txt’,
2022-04-02 10:41:37
487
原创 json模块之dump
函数json.dump() 将json对象存储在扩展名为.json的文件中json.dump(object, file)接受两个实参:存储的数据、存储数据的文件对象可在json.dump()函数中添加indent属性,代表缩进字符个数,得到内容自动带缩进,格式更清晰在json.dump()函数中添加ensure_ascii属性,规定编码格式例:url = ‘’ # 网址resp = requests.get(url, params=param, headers=headers) # 网址请求w
2022-04-01 20:08:55
7240
原创 python一个文件夹的文件移动到另外一个文件夹
import osimport shutilshutil.move(src, dst),src为要移动的文件的路径,dst为目的路径,路径必须是绝对路径work_dir = os.getcwd() # 获取绝对路径src = os.path.join()dst = os.path.join()shutil.move(src, dst) #移动图片shutil.copyfile(src, dst) #复制图片......
2022-03-09 17:37:05
7023
原创 Error loading “D:\Anaconda3\lib\site-packages\torch\lib\caffe2_detectron_ops_gpu.dll“
改小batch_size
2022-01-07 00:13:59
6865
4
原创 关闭笔记本电脑自带键盘
Win + R:cmdsc config i8042prt start= disabled(关)sc config i8042prt start= auto(开)
2021-12-26 21:51:54
332
原创 FileNotFoundError: [Errno 2] No such file or directory: ‘E:\\Deep‘
原因:文件夹名为Deep LearningPython一般不允许文件名内有空格方法:创另一个文件夹,放入其中
2021-12-23 19:39:44
1091
原创 批量修改文件名
os.renames(old, new) #新名取代旧名,创建路径例:images_dir = ‘UDD/UDD/images/train/’ #文件路径images_name = os.listdir(images_dir) #读取路径下的文件名num = 0for i in images_name:os.renames(os.path.join(images_dir, i), os.path.join(images_dir, i.replace(i[:4], str(num)))) #os
2021-12-09 23:14:36
70
原创 函数codecs.open()
import codecswith codecs.open(file_name, ‘w’, endcoding) as f:file_name 文件路径‘w’ 、‘r’、 ‘a’、 ‘a+’,打开方式endcoding 文件编码 ‘utf-8’
2021-12-05 16:31:15
379
原创 将 json文件批量转成 xml 文件
获取 json 文件路径例:json_dir = ‘UDD/UDD/annotations/’读取指定路径下的所有文件名:files = os.listdir(json_dir)找到 json 文件:json_file = []for f in files:if f.endwith(’.json’): #文件名以’.json’ 结尾json_file = f #存储 json 文件打开 json 文件,并读取for js in json_file:json_dir = os.pat.
2021-12-05 16:22:10
704
原创 函数os.path.join()
路径合并os.path.join()例:output_address = os.path.join(‘UDD/UDD/output_images/’, image)test_images_dir = ‘UDD/UDD/images/’input_address = os.path.join(test_images_dir, image)
2021-12-05 12:48:25
130
原创 读取指定路径下的文件名
os.listdir()endwith()例:labelme_path = “UDD/UDD/annotations/” #指定路径files_list = os.listdir(labelme_path) #读取指定路径下的所有路径files = []for i in files_list:if i.endswith(".json"): #路径下的文件以’json’结尾files.append(i) #添加到列表末尾...
2021-12-03 10:13:46
151
原创 RuntimeError: CUDA error: CUBLAS_STATUS_ALLOC_FAILED when calling `cublasCre
backbone = resnet50_fpn_backbone(norm_layer=torch.nn.BatchNorm2d,trainable_layers=3)将trainable_layers 改成4即可
2021-11-24 10:52:51
1375
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人