上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页
摘要: gpg: 找不到有效的 OpenPGP‘ & ‘E: 无法定位软件包 nvidia-docker2‘ 阅读全文
posted @ 2021-09-24 11:02 刘文华 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 1.Pytorch使用albumentations实现数据增强 2.数据增广方法代码大全 阅读全文
posted @ 2021-09-03 16:46 刘文华 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 一、准备工作: 安装pkg-config:sudo apt-get install pkg-config 安装opencv:sudo apt-get install libopencv-dev 二、编译darknet: 下载 darknet-master.zip:https://github.com 阅读全文
posted @ 2021-09-02 09:58 刘文华 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 一、yolov3 FPS on RTX 2070 (R) and Tesla V100 (V): csresnext50-panet-spp-original-optimal.cfg - 65.4% mAP@0.5 (43.2% AP@0.5:0.95) - 32(R) FPS - 100.5 BF 阅读全文
posted @ 2021-08-17 15:18 刘文华 阅读(745) 评论(0) 推荐(0) 编辑
摘要: 模型训练及测试 一、在DeepLabv3+模型的基础上,主要需要修改以下两个文件 data_generator.py train_utils.py (1)添加数据集描述 在datasets/data_generator.py文件中,添加自己的数据集描述: _CAMVID_INFORMATION = 阅读全文
posted @ 2021-08-13 11:52 刘文华 阅读(1334) 评论(0) 推荐(0) 编辑
摘要: 数据集处理 一、数据标注 使用labelme,如下: 数据图片和标注json文件放到同一个目录下 二、图像标注后的数据转换 (1)训练数据集生成标签图 python labelme2voc.py F:\blackbord\deeplabv3\image --labels labels.txt 其中, 阅读全文
posted @ 2021-08-13 11:02 刘文华 阅读(435) 评论(0) 推荐(0) 编辑
摘要: Deeplab项目安装及测试 一、tensorflow版本要求1.10以上 二、克隆deeplab项目 git clone https://github.com/tensorflow/models.git 三、添加项目依赖路径 vi ~/.bashrc 加上一句: export PYTHONPATH 阅读全文
posted @ 2021-08-13 09:20 刘文华 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 预训练后性能反而变差,自训练要取代预训练了吗? 阅读全文
posted @ 2021-07-16 14:29 刘文华 阅读(42) 评论(0) 推荐(0) 编辑
摘要: pytorch版本及对应的cuda 阅读全文
posted @ 2021-07-09 09:21 刘文华 阅读(1557) 评论(0) 推荐(0) 编辑
摘要: import numpy as np box1 = np.array([[0,0,100,100],[0,0,100,100]]) box2 = np.array([[50,50,100,100],[0,0,80,80]]) def calc_iou(boxes1, boxes2): # calcu 阅读全文
posted @ 2021-06-21 15:49 刘文华 阅读(253) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页