- 博客(7)
- 收藏
- 关注
原创 最简单的制作YOLO或则VOC数据集的方法
(2条消息) 制作YOLOv5数据集_HollowKnightZ的博客-CSDN博客_制作yolo数据集、第一步,单独创建一个环境只要有python就行pip install labelimg第二步├── VOC2012 根目录│├── JPEGImages 存放需要标注的图片│├── Annotations 存放标签│├── classes.txt 存放类别第三步labelimg JPEGImages classes.txt...
2022-05-17 09:06:47 491
原创 指定位置安装虚拟环境
conda create --prefix=C:/ProgramData/Anaconda3/envs/虚拟环境名字python=3.8
2022-04-29 20:08:02 820
原创 YOLO数据集划分
import osimport cv2import randomfrom PIL import Image# os.makedirs('labels_train')# os.makedirs('labels_val')img_train_path ='.//images/train/' #图片训练集保存路径,需要自己新建img_val_path = './/images/val/' #图片验证集保存路径 需要自己新建labels_train_path = './custom/...
2021-12-01 10:28:45 1932 2
转载 修改pip镜像源并且可以用
在学习python的时候,用pip下载一些库,有时候非常的慢,简直达到了奔溃的边缘。因为默认pip是使用Python官方的源,但是由于国外官方源经常被墙,导致不可以用,我们可以使用国内的Python镜像源,从而解决Python安装不上库的烦恼。常见国内镜像源 http://pypi.douban.com/simple/ 豆瓣 http://mirrors.aliyun.com/pypi/simple/ 阿里 http://pypi.hustunique.com/simple/...
2021-10-25 18:08:38 185
转载 AttributeError: Cant get attribute SPPF on module models.common from e:\pyWorkSpace\yolov5
运行yolov5下面Tags5的代码出现问题:AttributeError: Cant get attribute SPPF on module models.common from e:\pyWorkSpace\yolov5-5.0\models\common.py遇到这个问题提之后我在百度查了很久,都没找到答案。最后我在某个地方的评论区找到了某个大佬的回复,最终得到解决方案,特此公布给遇到同样问题的人。我这边运行的是yolov5下面Tags5的代码,出现了这个报错:AttributeEr
2021-10-25 17:30:07 2581 11
原创 yolov5 AssertionError: Image Not Found
yolov5 AssertionError: Image Not Found图片存在却提示找不到。解决:将datasets.py中第124行的p = str(Path(path).absolute()) # os-agnostic absolute path改为p = str(Path(path))————————————————版权声明:本文为CSDN博主「Meolivine」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。原文链接:https://blo
2021-10-25 17:25:53 2145 3
原创 conda安装GPU版本的pytorch
https://download.pytorch.org/whl/cu111/torch_stable.htmlhttps://download.pytorch.org/whl/cu111/torch_stable.html先安装好cuda和cudnn然后下载对应版本的torch和torchvision然后进入环境,pip install 文件的位置pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
2021-10-18 22:59:08 1617
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人