一、源码下载
可以从下方的链接下载SSD-Pytorch源码
https://github.com/bubbliiiing/ssd-pytorchhttps://github.com/bubbliiiing/ssd-pytorch
二、环境配置
1、创建环境
使用anaconda进行环境配置,创建一个ssd的环境:
conda create -n ssd python=3.8 -y
2、进入环境
激活anaconda环境:
conda activate ssd
3、torch安装
安装torch和torchvision,我所使用的torch版本为1.9.1+cu111,对应的torchvision版本为0.10.1+cu111:
pip install torch==1.9.1+cu1