# Practical Mobile-side detection method base on PaddleDetection
Mobile-side models are provided base on following architecture:
1. YOLOv3
2. Cascade Faster RCNN
3. SSD
## YOLOv3 mobile-side model
Mobile-side model based on YOLOv3 is a pruned model of YOLOv3-MobileNetv3, we pruned the YOLO-head of YOLOv3-MobileNetv3 and distill the pruned model by YOLOv3-ResNet34, which has a higher mAP on COCO as 31.4(input shape as 320\*320). For pruning, configurations as as follows:
1. pruning YOLO-head with following configuration and the FLOPS pruned ratios is 86%.
**NOTE:**`baseline` is the YOLOv3-MobileNetv3 base model, `prune` is the pruned model from YOLOv3-MobileNetv3 and pruned by configurations above, `Box AP` is test by `320*320` as input shape in both two models, and `latency` is test on Snapdragon845 with single thread. The pruned model is 2.5 times faster than the base model when the `Box AP` only decreased by 2.5.