Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -18,7 +18,7 @@ tags:
|
|
18 |
|
19 |
MNASNet05 is a machine learning model that can classify images from the Imagenet dataset. It can also be used as a backbone in building more complex models for specific use cases.
|
20 |
|
21 |
-
This model is an implementation of MNASNet05 found [here](
|
22 |
This repository provides scripts to run MNASNet05 on Qualcomm® devices.
|
23 |
More details on model performance across various devices, can be found
|
24 |
[here](https://aihub.qualcomm.com/models/mnasnet05).
|
@@ -33,15 +33,32 @@ More details on model performance across various devices, can be found
|
|
33 |
- Number of parameters: 2.21M
|
34 |
- Model size: 8.45 MB
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
|
38 |
|
39 |
-
| Device | Chipset | Target Runtime | Inference Time (ms) | Peak Memory Range (MB) | Precision | Primary Compute Unit | Target Model
|
40 |
-
| ---|---|---|---|---|---|---|---|
|
41 |
-
| Samsung Galaxy S23 Ultra (Android 13) | Snapdragon® 8 Gen 2 | TFLite | 0.755 ms | 0 - 13 MB | FP16 | NPU | [MNASNet05.tflite](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.tflite)
|
42 |
-
| Samsung Galaxy S23 Ultra (Android 13) | Snapdragon® 8 Gen 2 | QNN Model Library | 0.821 ms | 0 - 164 MB | FP16 | NPU | [MNASNet05.so](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.so)
|
43 |
-
|
44 |
-
|
45 |
|
46 |
## Installation
|
47 |
|
@@ -96,16 +113,16 @@ device. This script does the following:
|
|
96 |
```bash
|
97 |
python -m qai_hub_models.models.mnasnet05.export
|
98 |
```
|
99 |
-
|
100 |
```
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
|
|
109 |
```
|
110 |
|
111 |
|
@@ -204,15 +221,19 @@ provides instructions on how to use the `.so` shared library in an Android appl
|
|
204 |
Get more details on MNASNet05's performance across various devices [here](https://aihub.qualcomm.com/models/mnasnet05).
|
205 |
Explore all available models on [Qualcomm® AI Hub](https://aihub.qualcomm.com/)
|
206 |
|
|
|
207 |
## License
|
208 |
-
|
209 |
-
|
210 |
-
|
|
|
211 |
|
212 |
## References
|
213 |
* [MnasNet: Platform-Aware Neural Architecture Search for Mobile](https://arxiv.org/abs/1807.11626)
|
214 |
* [Source Model Implementation](https://github.com/pytorch/vision/blob/main/torchvision/models/mnasnet.py)
|
215 |
|
|
|
|
|
216 |
## Community
|
217 |
* Join [our AI Hub Slack community](https://aihub.qualcomm.com/community/slack) to collaborate, post questions and learn more about on-device AI.
|
218 |
* For questions or feedback please [reach out to us](mailto:[email protected]).
|
|
|
18 |
|
19 |
MNASNet05 is a machine learning model that can classify images from the Imagenet dataset. It can also be used as a backbone in building more complex models for specific use cases.
|
20 |
|
21 |
+
This model is an implementation of MNASNet05 found [here]({source_repo}).
|
22 |
This repository provides scripts to run MNASNet05 on Qualcomm® devices.
|
23 |
More details on model performance across various devices, can be found
|
24 |
[here](https://aihub.qualcomm.com/models/mnasnet05).
|
|
|
33 |
- Number of parameters: 2.21M
|
34 |
- Model size: 8.45 MB
|
35 |
|
36 |
+
| Model | Device | Chipset | Target Runtime | Inference Time (ms) | Peak Memory Range (MB) | Precision | Primary Compute Unit | Target Model
|
37 |
+
|---|---|---|---|---|---|---|---|---|
|
38 |
+
| MNASNet05 | Samsung Galaxy S23 | Snapdragon® 8 Gen 2 | TFLITE | 0.759 ms | 0 - 2 MB | FP16 | NPU | [MNASNet05.tflite](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.tflite) |
|
39 |
+
| MNASNet05 | Samsung Galaxy S23 | Snapdragon® 8 Gen 2 | QNN | 0.825 ms | 0 - 21 MB | FP16 | NPU | [MNASNet05.so](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.so) |
|
40 |
+
| MNASNet05 | Samsung Galaxy S23 | Snapdragon® 8 Gen 2 | ONNX | 0.751 ms | 0 - 5 MB | FP16 | NPU | [MNASNet05.onnx](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.onnx) |
|
41 |
+
| MNASNet05 | Samsung Galaxy S24 | Snapdragon® 8 Gen 3 | TFLITE | 0.533 ms | 0 - 50 MB | FP16 | NPU | [MNASNet05.tflite](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.tflite) |
|
42 |
+
| MNASNet05 | Samsung Galaxy S24 | Snapdragon® 8 Gen 3 | QNN | 0.581 ms | 1 - 17 MB | FP16 | NPU | [MNASNet05.so](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.so) |
|
43 |
+
| MNASNet05 | Samsung Galaxy S24 | Snapdragon® 8 Gen 3 | ONNX | 0.572 ms | 0 - 53 MB | FP16 | NPU | [MNASNet05.onnx](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.onnx) |
|
44 |
+
| MNASNet05 | QCS8550 (Proxy) | QCS8550 Proxy | TFLITE | 0.755 ms | 0 - 3 MB | FP16 | NPU | [MNASNet05.tflite](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.tflite) |
|
45 |
+
| MNASNet05 | QCS8550 (Proxy) | QCS8550 Proxy | QNN | 0.757 ms | 1 - 2 MB | FP16 | NPU | Use Export Script |
|
46 |
+
| MNASNet05 | SA8255 (Proxy) | SA8255P Proxy | TFLITE | 0.756 ms | 0 - 72 MB | FP16 | NPU | [MNASNet05.tflite](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.tflite) |
|
47 |
+
| MNASNet05 | SA8255 (Proxy) | SA8255P Proxy | QNN | 0.763 ms | 1 - 2 MB | FP16 | NPU | Use Export Script |
|
48 |
+
| MNASNet05 | SA8775 (Proxy) | SA8775P Proxy | TFLITE | 0.752 ms | 0 - 24 MB | FP16 | NPU | [MNASNet05.tflite](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.tflite) |
|
49 |
+
| MNASNet05 | SA8775 (Proxy) | SA8775P Proxy | QNN | 0.764 ms | 1 - 2 MB | FP16 | NPU | Use Export Script |
|
50 |
+
| MNASNet05 | SA8650 (Proxy) | SA8650P Proxy | TFLITE | 0.759 ms | 0 - 1 MB | FP16 | NPU | [MNASNet05.tflite](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.tflite) |
|
51 |
+
| MNASNet05 | SA8650 (Proxy) | SA8650P Proxy | QNN | 0.766 ms | 1 - 2 MB | FP16 | NPU | Use Export Script |
|
52 |
+
| MNASNet05 | QCS8450 (Proxy) | QCS8450 Proxy | TFLITE | 1.026 ms | 0 - 52 MB | FP16 | NPU | [MNASNet05.tflite](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.tflite) |
|
53 |
+
| MNASNet05 | QCS8450 (Proxy) | QCS8450 Proxy | QNN | 1.12 ms | 0 - 16 MB | FP16 | NPU | Use Export Script |
|
54 |
+
| MNASNet05 | Snapdragon 8 Elite QRD | Snapdragon® 8 Elite | TFLITE | 0.507 ms | 0 - 22 MB | FP16 | NPU | [MNASNet05.tflite](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.tflite) |
|
55 |
+
| MNASNet05 | Snapdragon 8 Elite QRD | Snapdragon® 8 Elite | QNN | 0.56 ms | 1 - 12 MB | FP16 | NPU | Use Export Script |
|
56 |
+
| MNASNet05 | Snapdragon 8 Elite QRD | Snapdragon® 8 Elite | ONNX | 0.573 ms | 0 - 23 MB | FP16 | NPU | [MNASNet05.onnx](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.onnx) |
|
57 |
+
| MNASNet05 | Snapdragon X Elite CRD | Snapdragon® X Elite | QNN | 0.932 ms | 1 - 1 MB | FP16 | NPU | Use Export Script |
|
58 |
+
| MNASNet05 | Snapdragon X Elite CRD | Snapdragon® X Elite | ONNX | 0.824 ms | 7 - 7 MB | FP16 | NPU | [MNASNet05.onnx](https://huggingface.co/qualcomm/MNASNet05/blob/main/MNASNet05.onnx) |
|
59 |
|
60 |
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
63 |
## Installation
|
64 |
|
|
|
113 |
```bash
|
114 |
python -m qai_hub_models.models.mnasnet05.export
|
115 |
```
|
|
|
116 |
```
|
117 |
+
Profiling Results
|
118 |
+
------------------------------------------------------------
|
119 |
+
MNASNet05
|
120 |
+
Device : Samsung Galaxy S23 (13)
|
121 |
+
Runtime : TFLITE
|
122 |
+
Estimated inference time (ms) : 0.8
|
123 |
+
Estimated peak memory usage (MB): [0, 2]
|
124 |
+
Total # Ops : 71
|
125 |
+
Compute Unit(s) : NPU (71 ops)
|
126 |
```
|
127 |
|
128 |
|
|
|
221 |
Get more details on MNASNet05's performance across various devices [here](https://aihub.qualcomm.com/models/mnasnet05).
|
222 |
Explore all available models on [Qualcomm® AI Hub](https://aihub.qualcomm.com/)
|
223 |
|
224 |
+
|
225 |
## License
|
226 |
+
* The license for the original implementation of MNASNet05 can be found [here](https://github.com/pytorch/vision/blob/main/LICENSE).
|
227 |
+
* The license for the compiled assets for on-device deployment can be found [here](https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/Qualcomm+AI+Hub+Proprietary+License.pdf)
|
228 |
+
|
229 |
+
|
230 |
|
231 |
## References
|
232 |
* [MnasNet: Platform-Aware Neural Architecture Search for Mobile](https://arxiv.org/abs/1807.11626)
|
233 |
* [Source Model Implementation](https://github.com/pytorch/vision/blob/main/torchvision/models/mnasnet.py)
|
234 |
|
235 |
+
|
236 |
+
|
237 |
## Community
|
238 |
* Join [our AI Hub Slack community](https://aihub.qualcomm.com/community/slack) to collaborate, post questions and learn more about on-device AI.
|
239 |
* For questions or feedback please [reach out to us](mailto:[email protected]).
|