0

$USD

$USD
REVIEWS

Review of YOLOv10 vs YOLOv8: Model Size, Performance Metrics, benchmark on x86 SBC and PC

DFRobot Sep 22 2024 1201

The YOLO (You Only Look Once) series of algorithms is one of the most influential and widely used deep learning models in the field of object detection. Since the introduction of YOLOv1, the YOLO series has gained rapid recognition and application in both academia and industry due to its efficient real-time detection capabilities and high accuracy. The core idea of the YOLO series is to transform the object detection problem into a single regression problem, directly predicting the bounding boxes and class probabilities in an image through a neural network, thereby achieving fast and accurate object detection.

With the continuous development of the YOLO series, each generation has seen significant improvements and optimizations in terms of model architecture, detection performance, and application scenarios. YOLOv8, as one of the most widely used versions, has garnered substantial user favor due to its efficient detection performance and low computational resource requirements. The recently released YOLOv10 further enhances the model's detection accuracy and inference speed, while also making important improvements in model architecture and optimization strategies. Therefore, this paper will provide an in-depth comparison of YOLOv10 and YOLOv8, analyzing their differences in model size, performance metrics, and hardware requirements to help readers better understand and choose the most suitable YOLO version for their application scenarios.

 

Differences in Model Size

YOLOv8 Model Architecture and Size

The architecture of YOLOv8 is mainly divided into three parts: Backbone, Neck, and Head.

Backbone: YOLOv8 uses CSPDarknet53 as its backbone network. This network improves information flow between different network stages through Cross-Stage Partial connections, enhancing gradient flow during training and thereby improving accuracy.

Neck: The Neck structure, also known as the feature extractor, is responsible for merging feature maps from different stages of the backbone network to capture multi-scale information. YOLOv8 employs the novel C2f module, which combines high-level semantic features with low-level spatial information, particularly improving accuracy in small object detection.

Head: The Head is responsible for making predictions. YOLOv8 uses multiple detection modules, which predict bounding boxes, objectness scores, and class probabilities for each grid cell in the feature map. These predictions are then aggregated to obtain the final detection results.

YOLOv8 also introduces several key innovations such as spatial attention mechanisms, feature fusion, bottlenecks, and the SPPF (Spatial Pyramid Pooling Fast) layer, as well as data augmentation and mixed precision training, all of which enhance the model's performance and efficiency.

YOLOv8 Architecture
YOLOv8 Architecture

 

Modelsize(pixels)

mAP

Val

50-95

Speed

CPU ONNX(ms)

Speed

A100 TensorRT(ms)

params

(M)

FLOPs(B)
YOLOv8n64037.380.40.993.28.7
YOLOv8s64044.9128.41.211.228.6
YOLOv8m64050.2234.71.8325.978.9
YOLOv8l64052.9375.22.3943.7165.2
YOLOv8x64053.9479.13.5368.2257.8

 

YOLOv8 Model Size Comparison

YOLOv10 Model Architecture and Size

1. NMS-Free Training: Utilizes consistent dual assignments to eliminate the need for NMS, reducing inference latency.

2. Holistic Model Design: Comprehensive optimization of various components from both efficiency and accuracy perspectives, including lightweight classification heads, spatial-channel decoupled-down sampling, and rank-guided block design.

3. Enhanced Model Capabilities: Incorporates large-kernel convolutions and partial self-attention modules to improve performance without significant computational cost.

YOLOv10 Model Architecture
YOLOv10 Model Architecture

 

ModelInput SizeAP valFLOPs(G)

Latency(ms)

TensorRT FP16 T4 GPU

YOLOv10-N64038.56.71.84
YOLOv10-S64046.321.62.49
YOLOv10-M64051.159.14.74
YOLOv10-B64052.5925.74
YOLOv10-L64053.2120.37.28
YOLOv10-X64054.4160.410.7

 

YOLOv10 Model Size Comparison

Performance Metrics Comparison

On the COCO dataset, YOLOv10-S is 1.8 times faster than RT-DETR-R18, while YOLOv10-B, with comparable performance, has reduced latency by 46% and decreased parameters by 25%. This demonstrates that YOLOv10 surpasses YOLOv8 in terms of both accuracy and efficiency.

Performance Metrics Comparison
 

On a test platform equipped with an Intel Core i7 processor and an NVIDIA Geforce RTX 3060 GPU, YOLOv10 demonstrated significant efficiency advantages.

Yolo model Performance Metrics Comparison

(Images sourced from this YouTube video)

 

Testing of YOLOv8 and YOLOv10 on PC, LP MU, and Jetson Orin

Real-Time Recognition Frame Rate Comparison

Based on the provided test results, we can observe that on platforms like AMD CPU, LattePanda MU, and Jetson Orin 64GB, YOLOv10 did not exhibit significant improvements in inference speed compared to YOLOv8. This phenomenon may be due to the higher complexity of the YOLOv10 model and its greater demand for floating-point computations, which collectively contribute to reduced performance during inference on CPUs. We look forward to further optimizations of YOLOv10 to achieve more efficient inference on these platforms in the future.

 YOLOv8n (fps)YOLOv10n (fps)Note
Thinkpad AMD CPU7.494.3original model
Lattepanda MU5.721.98original model
Lattepanda MU4.372Int8,onnx
Lattepanda MU107.4Int8,onnx,openvino
Lattepanda delta344original model
Lattepanda delta32.7-3.53.4-4.1Int8,onnx
Lattepanda sigma49.643.9Int8,onnx,openvino

 

Selection in Practical Applications

In actual use, in order to achieve our goals and meet the requirements of relevant hardware. We need to make a selection based on the yolo model.

In the yolov8 and yolov10 models, five different sizes of n, s, m, l and x are provided for selection.

First of all, from the perspective of model size, the number of parameters and floating point operations of the YOLOv10 series in all corresponding model sizes (N, S, M, L, X) are significantly lower than that of the YOLOv8 series. For example, the number of parameters of YOLOv10-X is only about half that of YOLOv8-X, and FLOPs are also reduced by about 38%. The lightweight design of this model makes YOLOv10 more efficient in storage and transmission, which is especially attractive for resource-constrained hardware platforms.

In terms of performance, the average precision (APval) of the YOLOv10 series on the validation set is generally higher than that of the YOLOv8 series, which shows that even while reducing the amount of parameters and computational complexity, YOLOv10 can still maintain or improve the accuracy of detection.

From an inference latency perspective, the YOLOv10 series exhibits lower inference latency and forward propagation latency across all model sizes. For example, the inference latency of YOLOv10-N is only 1.84ms, while YOLOv8-N is 6.16ms, which shows that YOLOv10 is more efficient in real-time target detection applications.

ModelParams (M)FLOPs (G)APval (%)Latency (ms)Latency (Forward) (ms)
YOLOv8-N3.28.737.36.161.77
YOLOv10-N2.36.739.51.841.79
YOLOv8-S11.228.644.97.072.33
YOLOv10-S7.221.646.82.492.39
YOLOv8-M25.978.950.69.55.09
YOLOv10-M15.459.151.34.744.63
YOLOv8-L43.7165.252.912.398.06
YOLOv10-L24.4120.353.47.287.21
YOLOv8-X68.2257.853.916.8612.83
YOLOv10-X29.5160.454.410.710.6

Model Size Comparison

 

In the above tests, due to the requirements of real-time performance, the N version has relatively low requirements for computing resources and is suitable for testing on a variety of hardware platforms. We selected the ultra-lightweight models of YOLOv8n and YOLOv10n, with a frame rate of up to 10. YOLOv8-X and YOLOv10-X were run on an Intel Core i7 processor and NVIDIA Geforce RTX 3060 GPU with frame rates of 30 and 36, respectively.

If the inference speed is slow, you can consider exporting the model to ONNX (Open Neural Network Exchange) format or other hardware-specific formats (such as TensorRT for NVIDIA GPUs) to improve performance, or quantize the model during the export process, that is, convert floating-point weights and activations to low-precision integers, which can reduce the size of the model and accelerate inference. The setting of the input size needs to be adjusted according to the actual task to ensure the detection effect of the model.

 

Conclusion

This article provides an in-depth comparison of YOLOv10 and YOLOv8, analyzing their differences in model size, performance metrics, and hardware requirements. The results show that although YOLOv10 has improved in terms of model complexity, floating-point operations, and accuracy, it did not significantly surpass YOLOv8 in inference speed on certain platforms, such as AMD CPU, LattePanda MU, and Jetson Orin 64GB. This may be due to the higher complexity and precision requirements of YOLOv10, as well as the lack of extensive optimization for these specific platforms.

In practical applications, users should choose the appropriate YOLO version based on their specific application scenarios and hardware resources. For hardware with limited resources, both YOLOv8 and YOLOv10 offer different model sizes to choose from. Additionally, to improve inference speed, consider exporting the model to ONNX format or other hardware-specific formats, or quantizing the model during the export proces