diff --git a/fluid/face_detection/README_cn.md b/fluid/face_detection/README_cn.md index 2b330124b821ffcdff8f5e22166b513db74242fb..6ef3b5b94d455deda9137203297b0a1826554926 100644 --- a/fluid/face_detection/README_cn.md +++ b/fluid/face_detection/README_cn.md @@ -160,4 +160,12 @@ python -u train.py --batch_size=16 --pretrained_model=vgg_ilsvrc_16_fc_reduced | 模型 | 预训练模型 | 训练数据 | 测试数据 | mAP | |:------------------------:|:------------------:|:----------------:|:------------:|:----:| -|[Pyramidbox-v1-SSD 640x640]() | [VGGNet](http://paddlemodels.bj.bcebos.com/vgg_ilsvrc_16_fc_reduced.tar.gz) | WIDER FACE train | WIDER FACE Val | 95.6%/ 94.6%/ 89.4% | +|[Pyramidbox-v1-SSD 640x640]() | [VGGNet](http://paddlemodels.bj.bcebos.com/vgg_ilsvrc_16_fc_reduced.tar.gz) | WIDER FACE train | WIDER FACE Val | 95.6%/ 94.7%/ 89.3% | + +#### 性能曲线 +

+ + +
+WIDER FACE Easy/Medium/Hard set +

diff --git a/fluid/face_detection/images/wider_pr_cruve_int_easy_val.jpg b/fluid/face_detection/images/wider_pr_cruve_int_easy_val.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29f902491ea35a527fb3d5822e5bc3a7c4d976cb Binary files /dev/null and b/fluid/face_detection/images/wider_pr_cruve_int_easy_val.jpg differ diff --git a/fluid/face_detection/images/wider_pr_cruve_int_hard_val.jpg b/fluid/face_detection/images/wider_pr_cruve_int_hard_val.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58f941be640c130bb7cfdf013f6e61d1ca948dba Binary files /dev/null and b/fluid/face_detection/images/wider_pr_cruve_int_hard_val.jpg differ diff --git a/fluid/face_detection/images/wider_pr_cruve_int_medium_val.jpg b/fluid/face_detection/images/wider_pr_cruve_int_medium_val.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c21b78e059e8185b8ad458ebf1c0e88aa3d993e Binary files /dev/null and b/fluid/face_detection/images/wider_pr_cruve_int_medium_val.jpg differ diff --git a/fluid/face_detection/widerface_eval.py b/fluid/face_detection/widerface_eval.py index acb279a3ffa77ff28ff21c60ba713707b21d852a..72be5fa64d3ae96ca5f4933bca6036c05c2c6e5b 100644 --- a/fluid/face_detection/widerface_eval.py +++ b/fluid/face_detection/widerface_eval.py @@ -127,7 +127,6 @@ def detect_face(image, shrink): det_ymax = image_shape[1] * detection[:, 5] / shrink det = np.column_stack((det_xmin, det_ymin, det_xmax, det_ymax, det_conf)) - det = det[keep_index, :] return det