qaihm-bot commited on
Commit
0615f7d
·
verified ·
1 Parent(s): aecc897

See https://github.com/qualcomm/ai-hub-models/releases/v0.52.0 for changelog.

Files changed (3) hide show
  1. LICENSE +1 -1
  2. README.md +18 -18
  3. release_assets.json +4 -4
LICENSE CHANGED
@@ -1 +1 @@
1
- The license of the original trained model can be found at https://github.com/CASIA-IVA-Lab/FastSAM/blob/main/LICENSE.
 
1
+ The license of the original trained model can be found at https://github.com/CASIA-LMC-Lab/FastSAM/blob/main/LICENSE.
README.md CHANGED
@@ -13,7 +13,7 @@ pipeline_tag: image-segmentation
13
 
14
  The Fast Segment Anything Model (FastSAM) is a novel, real-time CNN-based solution for the Segment Anything task. This task is designed to segment any object within an image based on various possible user interaction prompts. The model performs competitively despite significantly reduced computation, making it a practical choice for a variety of vision tasks.
15
 
16
- This is based on the implementation of FastSam-S found [here](https://github.com/CASIA-IVA-Lab/FastSAM).
17
  This repository contains pre-exported model files optimized for Qualcomm® devices. You can use the [Qualcomm® AI Hub Models](https://github.com/qualcomm/ai-hub-models/blob/main/src/qai_hub_models/models/fastsam_s) library to export with custom configurations. More details on model performance across various devices, can be found [here](#performance-summary).
18
 
19
  Qualcomm AI Hub Models uses [Qualcomm AI Hub Workbench](https://workbench.aihub.qualcomm.com) to compile, profile, and evaluate this model. [Sign up](https://myaccount.qualcomm.com/signup) to run these models on a hosted Qualcomm® device.
@@ -27,9 +27,9 @@ Below are pre-exported model assets ready for deployment.
27
 
28
  | Runtime | Precision | Chipset | SDK Versions | Download |
29
  |---|---|---|---|---|
30
- | ONNX | float | Universal | QAIRT 2.42, ONNX Runtime 1.24.3 | [Download](https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.51.0/fastsam_s-onnx-float.zip)
31
- | QNN_DLC | float | Universal | QAIRT 2.45 | [Download](https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.51.0/fastsam_s-qnn_dlc-float.zip)
32
- | TFLITE | float | Universal | QAIRT 2.45 | [Download](https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.51.0/fastsam_s-tflite-float.zip)
33
 
34
  For more device-specific assets and performance metrics, visit **[FastSam-S on Qualcomm® AI Hub](https://aihub.qualcomm.com/models/fastsam_s)**.
35
 
@@ -66,18 +66,18 @@ See our repository for [FastSam-S on GitHub](https://github.com/qualcomm/ai-hub-
66
  | FastSam-S | ONNX | float | Qualcomm® QCS8550 (Proxy) | 8.007 ms | 0 - 26 MB | NPU
67
  | FastSam-S | ONNX | float | Qualcomm® QCS9075 | 12.805 ms | 12 - 15 MB | NPU
68
  | FastSam-S | ONNX | float | Snapdragon® 8 Elite For Galaxy Mobile | 4.486 ms | 11 - 236 MB | NPU
69
- | FastSam-S | QNN_DLC | float | Snapdragon® 8 Elite Gen 5 Mobile | 3.137 ms | 5 - 196 MB | NPU
70
- | FastSam-S | QNN_DLC | float | Snapdragon® X2 Elite | 4.615 ms | 5 - 5 MB | NPU
71
- | FastSam-S | QNN_DLC | float | Snapdragon® X Elite | 8.241 ms | 5 - 5 MB | NPU
72
- | FastSam-S | QNN_DLC | float | Snapdragon® 8 Gen 3 Mobile | 5.852 ms | 0 - 212 MB | NPU
73
- | FastSam-S | QNN_DLC | float | Qualcomm® QCS8275 (Proxy) | 39.191 ms | 0 - 186 MB | NPU
74
- | FastSam-S | QNN_DLC | float | Qualcomm® QCS8550 (Proxy) | 7.713 ms | 5 - 6 MB | NPU
75
- | FastSam-S | QNN_DLC | float | Qualcomm® SA8775P | 11.597 ms | 1 - 181 MB | NPU
76
- | FastSam-S | QNN_DLC | float | Qualcomm® QCS9075 | 10.95 ms | 5 - 15 MB | NPU
77
- | FastSam-S | QNN_DLC | float | Qualcomm® QCS8450 (Proxy) | 16.094 ms | 5 - 214 MB | NPU
78
- | FastSam-S | QNN_DLC | float | Qualcomm® SA7255P | 39.191 ms | 0 - 186 MB | NPU
79
- | FastSam-S | QNN_DLC | float | Qualcomm® SA8295P | 13.817 ms | 0 - 178 MB | NPU
80
- | FastSam-S | QNN_DLC | float | Snapdragon® 8 Elite For Galaxy Mobile | 4.492 ms | 0 - 190 MB | NPU
81
  | FastSam-S | TFLITE | float | Snapdragon® 8 Elite Gen 5 Mobile | 3.007 ms | 0 - 98 MB | NPU
82
  | FastSam-S | TFLITE | float | Snapdragon® 8 Gen 3 Mobile | 5.171 ms | 0 - 113 MB | NPU
83
  | FastSam-S | TFLITE | float | Qualcomm® QCS8275 (Proxy) | 37.806 ms | 4 - 85 MB | NPU
@@ -91,11 +91,11 @@ See our repository for [FastSam-S on GitHub](https://github.com/qualcomm/ai-hub-
91
 
92
  ## License
93
  * The license for the original implementation of FastSam-S can be found
94
- [here](https://github.com/CASIA-IVA-Lab/FastSAM/blob/main/LICENSE).
95
 
96
  ## References
97
  * [Fast Segment Anything](https://arxiv.org/abs/2306.12156)
98
- * [Source Model Implementation](https://github.com/CASIA-IVA-Lab/FastSAM)
99
 
100
  ## Community
101
  * Join [our AI Hub Slack community](https://aihub.qualcomm.com/community/slack) to collaborate, post questions and learn more about on-device AI.
 
13
 
14
  The Fast Segment Anything Model (FastSAM) is a novel, real-time CNN-based solution for the Segment Anything task. This task is designed to segment any object within an image based on various possible user interaction prompts. The model performs competitively despite significantly reduced computation, making it a practical choice for a variety of vision tasks.
15
 
16
+ This is based on the implementation of FastSam-S found [here](https://github.com/CASIA-LMC-Lab/FastSAM).
17
  This repository contains pre-exported model files optimized for Qualcomm® devices. You can use the [Qualcomm® AI Hub Models](https://github.com/qualcomm/ai-hub-models/blob/main/src/qai_hub_models/models/fastsam_s) library to export with custom configurations. More details on model performance across various devices, can be found [here](#performance-summary).
18
 
19
  Qualcomm AI Hub Models uses [Qualcomm AI Hub Workbench](https://workbench.aihub.qualcomm.com) to compile, profile, and evaluate this model. [Sign up](https://myaccount.qualcomm.com/signup) to run these models on a hosted Qualcomm® device.
 
27
 
28
  | Runtime | Precision | Chipset | SDK Versions | Download |
29
  |---|---|---|---|---|
30
+ | ONNX | float | Universal | QAIRT 2.42, ONNX Runtime 1.24.3 | [Download](https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.52.0/fastsam_s-onnx-float.zip)
31
+ | QNN_DLC | float | Universal | QAIRT 2.45 | [Download](https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.52.0/fastsam_s-qnn_dlc-float.zip)
32
+ | TFLITE | float | Universal | QAIRT 2.45 | [Download](https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.52.0/fastsam_s-tflite-float.zip)
33
 
34
  For more device-specific assets and performance metrics, visit **[FastSam-S on Qualcomm® AI Hub](https://aihub.qualcomm.com/models/fastsam_s)**.
35
 
 
66
  | FastSam-S | ONNX | float | Qualcomm® QCS8550 (Proxy) | 8.007 ms | 0 - 26 MB | NPU
67
  | FastSam-S | ONNX | float | Qualcomm® QCS9075 | 12.805 ms | 12 - 15 MB | NPU
68
  | FastSam-S | ONNX | float | Snapdragon® 8 Elite For Galaxy Mobile | 4.486 ms | 11 - 236 MB | NPU
69
+ | FastSam-S | QNN_DLC | float | Snapdragon® 8 Elite Gen 5 Mobile | 3.136 ms | 4 - 195 MB | NPU
70
+ | FastSam-S | QNN_DLC | float | Snapdragon® X2 Elite | 8.058 ms | 5 - 5 MB | NPU
71
+ | FastSam-S | QNN_DLC | float | Snapdragon® X Elite | 8.236 ms | 5 - 5 MB | NPU
72
+ | FastSam-S | QNN_DLC | float | Snapdragon® 8 Gen 3 Mobile | 5.846 ms | 0 - 212 MB | NPU
73
+ | FastSam-S | QNN_DLC | float | Qualcomm® QCS8275 (Proxy) | 39.198 ms | 1 - 186 MB | NPU
74
+ | FastSam-S | QNN_DLC | float | Qualcomm® QCS8550 (Proxy) | 7.628 ms | 5 - 42 MB | NPU
75
+ | FastSam-S | QNN_DLC | float | Qualcomm® SA8775P | 11.608 ms | 1 - 183 MB | NPU
76
+ | FastSam-S | QNN_DLC | float | Qualcomm® QCS9075 | 10.938 ms | 5 - 15 MB | NPU
77
+ | FastSam-S | QNN_DLC | float | Qualcomm® QCS8450 (Proxy) | 16.035 ms | 5 - 213 MB | NPU
78
+ | FastSam-S | QNN_DLC | float | Qualcomm® SA7255P | 39.198 ms | 1 - 186 MB | NPU
79
+ | FastSam-S | QNN_DLC | float | Qualcomm® SA8295P | 13.786 ms | 0 - 178 MB | NPU
80
+ | FastSam-S | QNN_DLC | float | Snapdragon® 8 Elite For Galaxy Mobile | 4.491 ms | 5 - 196 MB | NPU
81
  | FastSam-S | TFLITE | float | Snapdragon® 8 Elite Gen 5 Mobile | 3.007 ms | 0 - 98 MB | NPU
82
  | FastSam-S | TFLITE | float | Snapdragon® 8 Gen 3 Mobile | 5.171 ms | 0 - 113 MB | NPU
83
  | FastSam-S | TFLITE | float | Qualcomm® QCS8275 (Proxy) | 37.806 ms | 4 - 85 MB | NPU
 
91
 
92
  ## License
93
  * The license for the original implementation of FastSam-S can be found
94
+ [here](https://github.com/CASIA-LMC-Lab/FastSAM/blob/main/LICENSE).
95
 
96
  ## References
97
  * [Fast Segment Anything](https://arxiv.org/abs/2306.12156)
98
+ * [Source Model Implementation](https://github.com/CASIA-LMC-Lab/FastSAM)
99
 
100
  ## Community
101
  * Join [our AI Hub Slack community](https://aihub.qualcomm.com/community/slack) to collaborate, post questions and learn more about on-device AI.
release_assets.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "version": "0.51.0",
3
  "precisions": {
4
  "float": {
5
  "universal_assets": {
@@ -8,20 +8,20 @@
8
  "qairt": "2.45.0.260326154327",
9
  "litert": "1.4.2"
10
  },
11
- "download_url": "https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.51.0/fastsam_s-tflite-float.zip"
12
  },
13
  "qnn_dlc": {
14
  "tool_versions": {
15
  "qairt": "2.45.0.260326154327"
16
  },
17
- "download_url": "https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.51.0/fastsam_s-qnn_dlc-float.zip"
18
  },
19
  "onnx": {
20
  "tool_versions": {
21
  "qairt": "2.42.0.251225135753_193295",
22
  "onnx_runtime": "1.24.3"
23
  },
24
- "download_url": "https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.51.0/fastsam_s-onnx-float.zip"
25
  }
26
  }
27
  }
 
1
  {
2
+ "version": "0.52.0",
3
  "precisions": {
4
  "float": {
5
  "universal_assets": {
 
8
  "qairt": "2.45.0.260326154327",
9
  "litert": "1.4.2"
10
  },
11
+ "download_url": "https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.52.0/fastsam_s-tflite-float.zip"
12
  },
13
  "qnn_dlc": {
14
  "tool_versions": {
15
  "qairt": "2.45.0.260326154327"
16
  },
17
+ "download_url": "https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.52.0/fastsam_s-qnn_dlc-float.zip"
18
  },
19
  "onnx": {
20
  "tool_versions": {
21
  "qairt": "2.42.0.251225135753_193295",
22
  "onnx_runtime": "1.24.3"
23
  },
24
+ "download_url": "https://qaihub-public-assets.s3.us-west-2.amazonaws.com/qai-hub-models/models/fastsam_s/releases/v0.52.0/fastsam_s-onnx-float.zip"
25
  }
26
  }
27
  }