{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## 1.PP-YOLOv2 Introduction\n", "\n", "As an important algorithm for object detection, the YOLO series adopts the one-stage method to greatly improve the detection speed, but the speed improvement also sacrifices some of the accuracy as a cost. Therefore, how to improve the accuracy of YOLOv3 while maintaining the speed of reasoning has become a key issue in its practical application.PP-YOLOv2 (R50) mAP in the COCO test dataset rises from 45.9% to 49.5%, an increase of 3.6 percentage points compared to v1. FP32 FPS is up to 68.9FPS, FP16 FPS is up to 106.5FPS, surpassing YOLOv4 and even YOLOv5! If RestNet101 is used as the backbone network, PP-YOLOv2 (R101) has up to 50.3% mAP and 15.9% faster than YOLOv5x with the same accuracy!\n", "\n", "The PP-YOLO model is officially produced by PaddlePaddle and is a model of the YOLOv3 optimized and improved by PaddleDetection. More information about PaddleDetection can be found here https://github.com/PaddlePaddle/PaddleDetection.\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Model Effects and Application Scenarios\n", "### 2.1 Object Detection Tasks:\n", "\n", "#### 2.1.1 Datasets:\n", "\n", "The dataset is mainly in COCO format, which is divided into training set and test set.\n", "\n", "#### 2.1.2 Model Effects:\n", "\n", "\n", "The detection effect of PP-YOLOv2 on the picture is:\n", "\n", "