PaddleDetection下載

不想再配環境了發表於2021-01-05

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

通過後輸出
在這裡插入圖片描述
預訓練模型預測

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

在這裡插入圖片描述
在這裡插入圖片描述

相關文章