上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页
摘要: Deeplab项目安装及测试 一、tensorflow版本要求1.10以上 二、克隆deeplab项目 git clone https://github.com/tensorflow/models.git 三、添加项目依赖路径 vi ~/.bashrc 加上一句: export PYTHONPATH 阅读全文
posted @ 2021-08-13 09:20 刘文华 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 预训练后性能反而变差,自训练要取代预训练了吗? 阅读全文
posted @ 2021-07-16 14:29 刘文华 阅读(46) 评论(0) 推荐(0) 编辑
摘要: pytorch版本及对应的cuda 阅读全文
posted @ 2021-07-09 09:21 刘文华 阅读(1582) 评论(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 刘文华 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 卸载cudnn sudo rm -rf /usr/local/cuda/include/cudnn.h sudo rm -rf /usr/local/cuda/lib64/libcudnn* 卸载cuda 第一步 sudo /usr/local/cuda-10.1/bin/cuda-uninstal 阅读全文
posted @ 2021-05-28 08:55 刘文华 阅读(1474) 评论(0) 推荐(0) 编辑
摘要: 1.克隆darknet 官网: https://pjreddie.com/darknet/yolo/ git clone https://github.com/pjreddie/darknet 2.编译项目 cd darknet make 3.下载权重 下载预训练权重文件(download the 阅读全文
posted @ 2021-04-29 17:04 刘文华 阅读(662) 评论(0) 推荐(0) 编辑
摘要: 数据集市 阅读全文
posted @ 2021-04-09 16:57 刘文华 阅读(28) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # coding: utf-8 # @author: lwh # @file: mouse_find.py # @time: 2021/1/06 15:54 from os import getcwd from xml.etree import Eleme 阅读全文
posted @ 2021-01-06 17:13 刘文华 阅读(868) 评论(0) 推荐(0) 编辑
摘要: 解决方案:h5py版本过高,执行 pip install h5py==2.10.0For me the solution was downgrading the h5py package (in my case to 2.10.0), apparently putting back only Ker 阅读全文
posted @ 2020-11-05 15:05 刘文华 阅读(818) 评论(0) 推荐(0) 编辑
摘要: 1. labelImg 工具描述:矩形标注 工具地址:https://github.com/tzutalin/labelImg 示意图: 2. roLabelImg 工具描述:基于labelImg重写的标注工具,支持旋转矩形标注 工具地址:https://github.com/cgvict/roLa 阅读全文
posted @ 2020-10-30 14:18 刘文华 阅读(497) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页