diff --git a/PaddleCV/yolov3/README.md b/PaddleCV/yolov3/README.md index a079257e575307b3d67fdbe08a59b9982c6a1db4..670551300ead15e8e01221e8f2787203dfb3cc1d 100644 --- a/PaddleCV/yolov3/README.md +++ b/PaddleCV/yolov3/README.md @@ -142,6 +142,8 @@ Evalutaion result is shown as below: | 416x416 | 36.5 | 58.2 | 39.1 | | 320x320 | 34.1 | 55.4 | 36.3 | +- **NOTE:** evaluations based on `pycocotools` evaluator, predict bounding boxes with `score < 0.05` were not filtered out. Some frameworks which filtered out predict bounding boxes with `score < 0.05` will cause a drop in accuracy. + ## Inference and Visualization Inference is used to get prediction score or image features based on trained models. `infer.py` is the main executor for inference, one can start infer step by: diff --git a/PaddleCV/yolov3/README_cn.md b/PaddleCV/yolov3/README_cn.md index 79d627452a3d02dddbf6dccaf62bd3b798d46c69..9ad33c673eda57f56018f4a614161ba4837ce30b 100644 --- a/PaddleCV/yolov3/README_cn.md +++ b/PaddleCV/yolov3/README_cn.md @@ -142,6 +142,8 @@ Train Loss | 416x416 | 36.5 | 58.2 | 39.1 | | 320x320 | 34.1 | 55.4 | 36.3 | +- **注意: **评估结果基于`pycocotools`评估器,没有滤除`score < 0.05`的预测框,其他框架有此滤除操作会导致精度下降。 + ## 模型推断及可视化