FBAGSTM commited on
Commit
b9f85af
·
verified ·
1 Parent(s): 7ef7a78

Release AI-ModelZoo-4.0.0

Browse files
Files changed (1) hide show
  1. README.md +74 -6
README.md CHANGED
@@ -1,6 +1,74 @@
1
- ---
2
- license: other
3
- license_name: sla0044
4
- license_link: >-
5
- https://github.com/STMicroelectronics/stm32ai-modelzoo/blob/main/instance_segmentation/LICENSE.md
6
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: sla0044
4
+ license_link: >-
5
+ https://github.com/STMicroelectronics/stm32ai-modelzoo/blob/main/instance_segmentation/LICENSE.md
6
+ ---
7
+ # Yolov11n_seg
8
+
9
+ ## **Use case** : `Instance segmentation`
10
+
11
+ # Model description
12
+
13
+ Yolov11n_seg is a lightweight and efficient model designed for instance segmentation tasks. It is part of the YOLO (You Only Look Once) family of models, known for their real-time object detection capabilities. The "n" in Yolov11n_seg indicates that it is a nano version, optimized for speed and resource efficiency, making it suitable for deployment on devices with limited computational power, such as mobile devices and embedded systems.
14
+
15
+ Yolov11n_seg is implemented in Pytorch by Ultralytics and is quantized in int8 format using tensorflow lite converter.
16
+
17
+ ## Network information
18
+ | Network Information | Value |
19
+ |-------------------------|--------------------------------------|
20
+ | Framework | Tensorflow |
21
+ | Quantization | int8 |
22
+ | Paper | https://arxiv.org/pdf/2305.09972 |
23
+
24
+
25
+
26
+ ## Recommended platform
27
+ | Platform | Supported | Recommended |
28
+ |----------|-----------|-------------|
29
+ | STM32L0 | [] | [] |
30
+ | STM32L4 | [] | [] |
31
+ | STM32U5 | [] | [] |
32
+ | STM32MP1 | [] | [] |
33
+ | STM32MP2 | [] | [] |
34
+ | STM32N6| [x] | [x] |
35
+
36
+ ---
37
+ # Performances
38
+
39
+ ## Metrics
40
+ Measures are done with default STEdgeAI Core version configuration with enabled input / output allocated option.
41
+ > [!CAUTION]
42
+ > All YOLOv11 hyperlinks in the tables below link to an external GitHub folder, which is subject to its own license terms:
43
+ https://github.com/stm32-hotspot/ultralytics/blob/main/LICENSE
44
+ Please also check the folder's README.md file for detailed information about its use and content:
45
+ https://github.com/stm32-hotspot/ultralytics/blob/main/examples/YOLOv8-STEdgeAI/README.md
46
+
47
+
48
+ ### Reference **NPU** memory footprint based on COCO dataset
49
+
50
+ |Model | Dataset | Format | Resolution | Series | Internal RAM (KiB)| External RAM (KiB)| Weights Flash (KiB) | STEdgeAI Core version |
51
+ |----------|------------------|--------|-------------|------------------|------------------|---------------------|-------|----------------------|-------------------------|
52
+ | [Yolov11n seg per channel](https://github.com/stm32-hotspot/ultralytics/blob/main/examples/YOLOv8-STEdgeAI/stedgeai_models/segmentation/yolov11n/yolov11n_256_quant_pc_ii_seg_coco80-st.tflite) | COCO | Int8 | 256x256x3 | STM32N6 | 688.0 | 0.0 | 2569.38 | 3.0.0
53
+
54
+
55
+
56
+ ### Reference **NPU** inference time based on COCO Person dataset
57
+ | Model | Dataset | Format | Resolution | Board | Execution Engine | Inference time (ms) | Inf / sec | STEdgeAI Core version |
58
+ |--------|------------------|--------|-------------|------------------|------------------|---------------------|-------|----------------------|-------------------------|
59
+ | [YOLOv11n seg per channel](https://github.com/stm32-hotspot/ultralytics/blob/main/examples/YOLOv8-STEdgeAI/stedgeai_models/segmentation/yolov11n/yolov11n_256_quant_pc_ii_seg_coco80-st.tflite) | COCO-Person | Int8 | 256x256x3 | STM32N6570-DK | NPU/MCU | 28.01 | 35.71 | 3.0.0 |
60
+
61
+
62
+
63
+ ## Retraining and Integration in a Simple Example
64
+ Please refer to the stm32ai-modelzoo-services GitHub [here](https://github.com/STMicroelectronics/stm32ai-modelzoo-services).
65
+ For instance segmentation, the models are stored in the Ultralytics repository. You can find them at the following link: [Ultralytics YOLOv8-STEdgeAI Models](https://github.com/stm32-hotspot/ultralytics/blob/main/examples/YOLOv8-STEdgeAI/stedgeai_models/).
66
+
67
+ Please refer to the [Ultralytics documentation](https://docs.ultralytics.com/tasks/segment/#train) to retrain the model.
68
+
69
+
70
+ ## References
71
+
72
+ <a id="1">[1]</a> T.-Y. Lin, M. Maire, S. Belongie, J. Hays, P. Perona, D. Ramanan, P. Dollár, and C. L. Zitnick, "Microsoft COCO: Common Objects in Context." European Conference on Computer Vision (ECCV), 2014. [Link](https://arxiv.org/abs/1405.0312)
73
+
74
+ <a id="2">[2]</a> Ultralytics, "YOLO11: Next-Generation Object Detection and Segmentation Model." Ultralytics, 2023. [Link](https://github.com/ultralytics/ultralytics)