PaddleDetection下载

PaddleDetection下载

上一篇文章记录了PaddlePaddle的安装过程。依旧根据paddleDetection中文文档下载paddleDetection并安装依赖库。
我的环境:

  1. Windows10
  2. python3.7.9
  3. pip10.0.1
  4. CUDA10.2
  5. cudnn7.6.4
  6. paddle1.8.4

所需python依赖库requirements.txt安装:

pip install -r requirements.txt

克隆PaddleDetection,github或者gitee都可

git clone https://github.com/PaddlePaddle/PaddleDetection.git
git clone https://gitee.com/paddlepaddle/PaddleDetection

确认测试通过

python ppdet/modeling/tests/test_architectures.py

通过后输出
PaddleDetection下载_第1张图片
预训练模型预测

python tools/infer.py -c configs/ppyolo/ppyolo.yml -o use_gpu=true weights=https://paddlemodels.bj.bcebos.com/object_detection/ppyolo.pdparams --infer_img=demo/000000014439_640x640.jpg

PaddleDetection下载_第2张图片

你可能感兴趣的:(环境配置,paddlepaddle)