linux平台的mmdetection安装

linux平台的mmdetection安装,第1张

linux平台的mmdetection安装

前提:
安装好anaconda

1.创建新的环境,本文将新环境名称设为mmdet

conda create -n mmdet python=3.7

2.安装pytorch

conda install pytorch=1.7.0 torchvision=0.8.0

3.安装cuda
因为本文的环境已有全部cuda,所以无安装过程。
本文选择cuda-10.2-cudnn-7.6.5版本

4安装mmcv,本文选择1.3.3。注意:一定要加full

pip install mmcv-full==1.3.3

5 访问https://github.com/open-mmlab/mmdetection找到对应的版本:本文选择2.13.0

cd mmdetection-2.13.0
pip install -r requirements.txt
pip install -v -e . 

安装完成。

6.测试
在mmdetection下新建checkpoints文件夹,
在mmdetection/configs有很多个模型,选择其中一种模型的文件夹进去,找到README.md下载对应的

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5572045.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存