摘要:
Deeplab项目安装及测试 一、tensorflow版本要求1.10以上 二、克隆deeplab项目 git clone https://github.com/tensorflow/models.git 三、添加项目依赖路径 vi ~/.bashrc 加上一句: export PYTHONPATH 阅读全文
摘要:
预训练后性能反而变差,自训练要取代预训练了吗? 阅读全文
摘要:
pytorch版本及对应的cuda 阅读全文
摘要:
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 阅读全文
摘要:
卸载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 阅读全文
摘要:
1.克隆darknet 官网: https://pjreddie.com/darknet/yolo/ git clone https://github.com/pjreddie/darknet 2.编译项目 cd darknet make 3.下载权重 下载预训练权重文件(download the 阅读全文
摘要:
#!/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 阅读全文
摘要:
解决方案: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 阅读全文
摘要:
1. labelImg 工具描述:矩形标注 工具地址:https://github.com/tzutalin/labelImg 示意图: 2. roLabelImg 工具描述:基于labelImg重写的标注工具,支持旋转矩形标注 工具地址:https://github.com/cgvict/roLa 阅读全文