qc903113684 commited on
Commit
d654ab3
·
verified ·
1 Parent(s): 953582e

Upload 15 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ model_farm_lightweight_face_detection_qcs6490_qnn2.31_int8_aidlie/python/test.jpg filter=lfs diff=lfs merge=lfs -text
37
+ model_farm_lightweight_face_detection_qcs6490_qnn2.31_w8a16_aidlie/python/test.jpg filter=lfs diff=lfs merge=lfs -text
38
+ model_farm_lightweight_face_detection_qcs8550_qnn2.31_fp16_aidlie/python/test.jpg filter=lfs diff=lfs merge=lfs -text
39
+ model_farm_lightweight_face_detection_qcs8550_qnn2.31_int8_aidlie/python/test.jpg filter=lfs diff=lfs merge=lfs -text
40
+ model_farm_lightweight_face_detection_qcs8550_qnn2.31_w8a16_aidlie/python/test.jpg filter=lfs diff=lfs merge=lfs -text
model_farm_lightweight_face_detection_qcs6490_qnn2.31_int8_aidlie/README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Model Information
2
+
3
+ ### Source model
4
+ - Input shape: [1x1x480x640]
5
+ - Number of parameters: 0.84M
6
+ - Model size: 3.72M
7
+ - Output shape: [[1x1x60x80],[1x4x60x80],[1x10x60x80]]
8
+
9
+ Source model repository: [LightWeight-Face-Detection](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_det_lite/model.py)
10
+
11
+ ### Converted model
12
+
13
+ - Precision: INT8
14
+ - Backend: QNN2.31
15
+ - Target Device: FV01 QCS6490
16
+
17
+ ## Inference with AidLite SDK
18
+
19
+ ### SDK installation
20
+ Model Farm uses AidLite SDK as the model inference SDK. For details, please refer to the [AidLite Developer Documentation](https://v2.docs.aidlux.com/en/sdk-api/aidlite-sdk/)
21
+
22
+ - Install AidLite SDK
23
+
24
+ ```bash
25
+ # Install the appropriate version of the aidlite sdk
26
+ sudo aid-pkg update
27
+ sudo aid-pkg install aidlite-sdk
28
+ # Download the qnn version that matches the above backend. Eg Install QNN2.23 Aidlite: sudo aid-pkg install aidlite-qnn223
29
+ sudo aid-pkg install aidlite-{QNN VERSION}
30
+ ```
31
+
32
+ - Verify AidLite SDK
33
+
34
+ ```bash
35
+ # aidlite sdk c++ check
36
+ python3 -c "import aidlite ; print(aidlite.get_library_version())"
37
+
38
+ # aidlite sdk python check
39
+ python3 -c "import aidlite ; print(aidlite.get_py_library_version())"
40
+ ```
model_farm_lightweight_face_detection_qcs6490_qnn2.31_int8_aidlie/models/lite_face_det_w8a8.qnn231.ctx.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9216ecc42b95475b7f6167972ca3d082545c8520c5789b92288e7e6385e37e6c
3
+ size 1040800
model_farm_lightweight_face_detection_qcs6490_qnn2.31_int8_aidlie/python/test.jpg ADDED

Git LFS Details

  • SHA256: 33b198a1d2839bb9ac4c65d61f9e852196793cae9a0781360859425f6022b69c
  • Pointer size: 131 Bytes
  • Size of remote file: 487 kB
model_farm_lightweight_face_detection_qcs6490_qnn2.31_w8a16_aidlie/README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Model Information
2
+
3
+ ### Source model
4
+ - Input shape: [1x1x480x640]
5
+ - Number of parameters: 0.84M
6
+ - Model size: 3.72M
7
+ - Output shape: [[1x1x60x80],[1x4x60x80],[1x10x60x80]]
8
+
9
+ Source model repository: [LightWeight-Face-Detection](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_det_lite/model.py)
10
+
11
+ ### Converted model
12
+
13
+ - Precision: W8A16
14
+ - Backend: QNN2.31
15
+ - Target Device: FV01 QCS6490
16
+
17
+ ## Inference with AidLite SDK
18
+
19
+ ### SDK installation
20
+ Model Farm uses AidLite SDK as the model inference SDK. For details, please refer to the [AidLite Developer Documentation](https://v2.docs.aidlux.com/en/sdk-api/aidlite-sdk/)
21
+
22
+ - Install AidLite SDK
23
+
24
+ ```bash
25
+ # Install the appropriate version of the aidlite sdk
26
+ sudo aid-pkg update
27
+ sudo aid-pkg install aidlite-sdk
28
+ # Download the qnn version that matches the above backend. Eg Install QNN2.23 Aidlite: sudo aid-pkg install aidlite-qnn223
29
+ sudo aid-pkg install aidlite-{QNN VERSION}
30
+ ```
31
+
32
+ - Verify AidLite SDK
33
+
34
+ ```bash
35
+ # aidlite sdk c++ check
36
+ python3 -c "import aidlite ; print(aidlite.get_library_version())"
37
+
38
+ # aidlite sdk python check
39
+ python3 -c "import aidlite ; print(aidlite.get_py_library_version())"
40
+ ```
model_farm_lightweight_face_detection_qcs6490_qnn2.31_w8a16_aidlie/models/lite_face_det_w8a16.qnn231.ctx.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ac90eb220fada5f1003fc2415adb18593961115e85bf2369358deafd9615634
3
+ size 1053088
model_farm_lightweight_face_detection_qcs6490_qnn2.31_w8a16_aidlie/python/test.jpg ADDED

Git LFS Details

  • SHA256: 33b198a1d2839bb9ac4c65d61f9e852196793cae9a0781360859425f6022b69c
  • Pointer size: 131 Bytes
  • Size of remote file: 487 kB
model_farm_lightweight_face_detection_qcs8550_qnn2.31_fp16_aidlie/README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Model Information
2
+
3
+ ### Source model
4
+ - Input shape: [1x1x480x640]
5
+ - Number of parameters: 0.84M
6
+ - Model size: 3.72M
7
+ - Output shape: [[1x1x60x80],[1x4x60x80],[1x10x60x80]]
8
+
9
+ Source model repository: [LightWeight-Face-Detection](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_det_lite/model.py)
10
+
11
+ ### Converted model
12
+
13
+ - Precision: FP16
14
+ - Backend: QNN2.31
15
+ - Target Device: SNM972 QCS8550
16
+
17
+ ## Inference with AidLite SDK
18
+
19
+ ### SDK installation
20
+ Model Farm uses AidLite SDK as the model inference SDK. For details, please refer to the [AidLite Developer Documentation](https://v2.docs.aidlux.com/en/sdk-api/aidlite-sdk/)
21
+
22
+ - Install AidLite SDK
23
+
24
+ ```bash
25
+ # Install the appropriate version of the aidlite sdk
26
+ sudo aid-pkg update
27
+ sudo aid-pkg install aidlite-sdk
28
+ # Download the qnn version that matches the above backend. Eg Install QNN2.23 Aidlite: sudo aid-pkg install aidlite-qnn223
29
+ sudo aid-pkg install aidlite-{QNN VERSION}
30
+ ```
31
+
32
+ - Verify AidLite SDK
33
+
34
+ ```bash
35
+ # aidlite sdk c++ check
36
+ python3 -c "import aidlite ; print(aidlite.get_library_version())"
37
+
38
+ # aidlite sdk python check
39
+ python3 -c "import aidlite ; print(aidlite.get_py_library_version())"
40
+ ```
model_farm_lightweight_face_detection_qcs8550_qnn2.31_fp16_aidlie/models/lite_face_det_fp16.qnn231.ctx.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:132b0d7d6c44995861d885efd7bb5a519a811ea0dfa7bd244cd757dcf72e3327
3
+ size 1964128
model_farm_lightweight_face_detection_qcs8550_qnn2.31_fp16_aidlie/python/test.jpg ADDED

Git LFS Details

  • SHA256: 33b198a1d2839bb9ac4c65d61f9e852196793cae9a0781360859425f6022b69c
  • Pointer size: 131 Bytes
  • Size of remote file: 487 kB
model_farm_lightweight_face_detection_qcs8550_qnn2.31_int8_aidlie/README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Model Information
2
+
3
+ ### Source model
4
+ - Input shape: [1x1x480x640]
5
+ - Number of parameters: 0.84M
6
+ - Model size: 3.72M
7
+ - Output shape: [[1x1x60x80],[1x4x60x80],[1x10x60x80]]
8
+
9
+ Source model repository: [LightWeight-Face-Detection](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_det_lite/model.py)
10
+
11
+ ### Converted model
12
+
13
+ - Precision: INT8
14
+ - Backend: QNN2.31
15
+ - Target Device: SNM972 QCS8550
16
+
17
+ ## Inference with AidLite SDK
18
+
19
+ ### SDK installation
20
+ Model Farm uses AidLite SDK as the model inference SDK. For details, please refer to the [AidLite Developer Documentation](https://v2.docs.aidlux.com/en/sdk-api/aidlite-sdk/)
21
+
22
+ - Install AidLite SDK
23
+
24
+ ```bash
25
+ # Install the appropriate version of the aidlite sdk
26
+ sudo aid-pkg update
27
+ sudo aid-pkg install aidlite-sdk
28
+ # Download the qnn version that matches the above backend. Eg Install QNN2.23 Aidlite: sudo aid-pkg install aidlite-qnn223
29
+ sudo aid-pkg install aidlite-{QNN VERSION}
30
+ ```
31
+
32
+ - Verify AidLite SDK
33
+
34
+ ```bash
35
+ # aidlite sdk c++ check
36
+ python3 -c "import aidlite ; print(aidlite.get_library_version())"
37
+
38
+ # aidlite sdk python check
39
+ python3 -c "import aidlite ; print(aidlite.get_py_library_version())"
40
+ ```
model_farm_lightweight_face_detection_qcs8550_qnn2.31_int8_aidlie/models/lite_face_det_w8a8.qnn231.ctx.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8f3c3be96b1a3c11939c62bb8a4f11368236718fd9f0af882ae6f7e1aa3ce75
3
+ size 1032544
model_farm_lightweight_face_detection_qcs8550_qnn2.31_int8_aidlie/python/test.jpg ADDED

Git LFS Details

  • SHA256: 33b198a1d2839bb9ac4c65d61f9e852196793cae9a0781360859425f6022b69c
  • Pointer size: 131 Bytes
  • Size of remote file: 487 kB
model_farm_lightweight_face_detection_qcs8550_qnn2.31_w8a16_aidlie/README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Model Information
2
+
3
+ ### Source model
4
+ - Input shape: [1x1x480x640]
5
+ - Number of parameters: 0.84M
6
+ - Model size: 3.72M
7
+ - Output shape: [[1x1x60x80],[1x4x60x80],[1x10x60x80]]
8
+
9
+ Source model repository: [LightWeight-Face-Detection](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_det_lite/model.py)
10
+
11
+ ### Converted model
12
+
13
+ - Precision: W8A16
14
+ - Backend: QNN2.31
15
+ - Target Device: SNM972 QCS8550
16
+
17
+ ## Inference with AidLite SDK
18
+
19
+ ### SDK installation
20
+ Model Farm uses AidLite SDK as the model inference SDK. For details, please refer to the [AidLite Developer Documentation](https://v2.docs.aidlux.com/en/sdk-api/aidlite-sdk/)
21
+
22
+ - Install AidLite SDK
23
+
24
+ ```bash
25
+ # Install the appropriate version of the aidlite sdk
26
+ sudo aid-pkg update
27
+ sudo aid-pkg install aidlite-sdk
28
+ # Download the qnn version that matches the above backend. Eg Install QNN2.23 Aidlite: sudo aid-pkg install aidlite-qnn223
29
+ sudo aid-pkg install aidlite-{QNN VERSION}
30
+ ```
31
+
32
+ - Verify AidLite SDK
33
+
34
+ ```bash
35
+ # aidlite sdk c++ check
36
+ python3 -c "import aidlite ; print(aidlite.get_library_version())"
37
+
38
+ # aidlite sdk python check
39
+ python3 -c "import aidlite ; print(aidlite.get_py_library_version())"
40
+ ```
model_farm_lightweight_face_detection_qcs8550_qnn2.31_w8a16_aidlie/models/lite_face_det_w8a16.qnn231.ctx.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36d57051a9b97f8f08ac6940c1706cd7f850f32bdfd0ff22f703dc29881c9e63
3
+ size 1069408
model_farm_lightweight_face_detection_qcs8550_qnn2.31_w8a16_aidlie/python/test.jpg ADDED

Git LFS Details

  • SHA256: 33b198a1d2839bb9ac4c65d61f9e852196793cae9a0781360859425f6022b69c
  • Pointer size: 131 Bytes
  • Size of remote file: 487 kB