Upload 15 files
Browse files- .gitattributes +5 -0
- model_farm_face_attrib_net_qcs6490_qnn2.31_int8_aidlite/README.md +40 -0
- model_farm_face_attrib_net_qcs6490_qnn2.31_int8_aidlite/models/face_attrib_net_w8a8.qnn231.ctx.bin +3 -0
- model_farm_face_attrib_net_qcs6490_qnn2.31_int8_aidlite/python/test.jpg +3 -0
- model_farm_face_attrib_net_qcs6490_qnn2.31_w8a16_aidlite/README.md +40 -0
- model_farm_face_attrib_net_qcs6490_qnn2.31_w8a16_aidlite/models/face_attrib_net_w8a16.qnn231.ctx.bin +3 -0
- model_farm_face_attrib_net_qcs6490_qnn2.31_w8a16_aidlite/python/test.jpg +3 -0
- model_farm_face_attrib_net_qcs8550_qnn2.31_fp16_aidlite/README.md +40 -0
- model_farm_face_attrib_net_qcs8550_qnn2.31_fp16_aidlite/models/face_attrib_net_fp16.qnn231.ctx.bin +3 -0
- model_farm_face_attrib_net_qcs8550_qnn2.31_fp16_aidlite/python/test.jpg +3 -0
- model_farm_face_attrib_net_qcs8550_qnn2.31_int8_aidlite/README.md +40 -0
- model_farm_face_attrib_net_qcs8550_qnn2.31_int8_aidlite/models/face_attrib_net_w8a8.qnn231.ctx.bin +3 -0
- model_farm_face_attrib_net_qcs8550_qnn2.31_int8_aidlite/python/test.jpg +3 -0
- model_farm_face_attrib_net_qcs8550_qnn2.31_w8a16_aidlite/README.md +40 -0
- model_farm_face_attrib_net_qcs8550_qnn2.31_w8a16_aidlite/models/face_attrib_net_w8a16.qnn231.ctx.bin +3 -0
- model_farm_face_attrib_net_qcs8550_qnn2.31_w8a16_aidlite/python/test.jpg +3 -0
.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_face_attrib_net_qcs6490_qnn2.31_int8_aidlite/python/test.jpg filter=lfs diff=lfs merge=lfs -text
|
37 |
+
model_farm_face_attrib_net_qcs6490_qnn2.31_w8a16_aidlite/python/test.jpg filter=lfs diff=lfs merge=lfs -text
|
38 |
+
model_farm_face_attrib_net_qcs8550_qnn2.31_fp16_aidlite/python/test.jpg filter=lfs diff=lfs merge=lfs -text
|
39 |
+
model_farm_face_attrib_net_qcs8550_qnn2.31_int8_aidlite/python/test.jpg filter=lfs diff=lfs merge=lfs -text
|
40 |
+
model_farm_face_attrib_net_qcs8550_qnn2.31_w8a16_aidlite/python/test.jpg filter=lfs diff=lfs merge=lfs -text
|
model_farm_face_attrib_net_qcs6490_qnn2.31_int8_aidlite/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Model Information
|
2 |
+
|
3 |
+
### Source model
|
4 |
+
- Input shape: [1x3x128x128]
|
5 |
+
- Number of parameters: 11.58M
|
6 |
+
- Model size: 46.35M
|
7 |
+
- Output shape: [[1x512],[1x32],[1x2],[1x2],[1x2],[1x2]]
|
8 |
+
|
9 |
+
Source model repository: [Face_Attrib_Net](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_attrib_net/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_face_attrib_net_qcs6490_qnn2.31_int8_aidlite/models/face_attrib_net_w8a8.qnn231.ctx.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:895de1a5c9a1a975edcbe3048ef769c48720e6c5542e6d935d37c3e0f174df37
|
3 |
+
size 13204488
|
model_farm_face_attrib_net_qcs6490_qnn2.31_int8_aidlite/python/test.jpg
ADDED
![]() |
Git LFS Details
|
model_farm_face_attrib_net_qcs6490_qnn2.31_w8a16_aidlite/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Model Information
|
2 |
+
|
3 |
+
### Source model
|
4 |
+
- Input shape: [1x3x128x128]
|
5 |
+
- Number of parameters: 11.58M
|
6 |
+
- Model size: 46.35M
|
7 |
+
- Output shape: [[1x512],[1x32],[1x2],[1x2],[1x2],[1x2]]
|
8 |
+
|
9 |
+
Source model repository: [Face_Attrib_Net](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_attrib_net/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_face_attrib_net_qcs6490_qnn2.31_w8a16_aidlite/models/face_attrib_net_w8a16.qnn231.ctx.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:22982ac6d512b6962fd80bde9d249bca2678398c8c48d7c02921900baa5281af
|
3 |
+
size 13257800
|
model_farm_face_attrib_net_qcs6490_qnn2.31_w8a16_aidlite/python/test.jpg
ADDED
![]() |
Git LFS Details
|
model_farm_face_attrib_net_qcs8550_qnn2.31_fp16_aidlite/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Model Information
|
2 |
+
|
3 |
+
### Source model
|
4 |
+
- Input shape: [1x3x128x128]
|
5 |
+
- Number of parameters: 11.58M
|
6 |
+
- Model size: 46.35M
|
7 |
+
- Output shape: [[1x512],[1x32],[1x2],[1x2],[1x2],[1x2]]
|
8 |
+
|
9 |
+
Source model repository: [Face_Attrib_Net](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_attrib_net/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_face_attrib_net_qcs8550_qnn2.31_fp16_aidlite/models/face_attrib_net_fp16.qnn231.ctx.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9e5d64ddd36bdbc1156e1c427c1e03e7dbf080b01bf611b217a4873754896527
|
3 |
+
size 25938880
|
model_farm_face_attrib_net_qcs8550_qnn2.31_fp16_aidlite/python/test.jpg
ADDED
![]() |
Git LFS Details
|
model_farm_face_attrib_net_qcs8550_qnn2.31_int8_aidlite/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Model Information
|
2 |
+
|
3 |
+
### Source model
|
4 |
+
- Input shape: [1x3x128x128]
|
5 |
+
- Number of parameters: 11.58M
|
6 |
+
- Model size: 46.35M
|
7 |
+
- Output shape: [[1x512],[1x32],[1x2],[1x2],[1x2],[1x2]]
|
8 |
+
|
9 |
+
Source model repository: [Face_Attrib_Net](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_attrib_net/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_face_attrib_net_qcs8550_qnn2.31_int8_aidlite/models/face_attrib_net_w8a8.qnn231.ctx.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:30ea9e3e71c1c834265b17d440d35b7f4b2313d7f9137932d60ec323d88fafcc
|
3 |
+
size 13229064
|
model_farm_face_attrib_net_qcs8550_qnn2.31_int8_aidlite/python/test.jpg
ADDED
![]() |
Git LFS Details
|
model_farm_face_attrib_net_qcs8550_qnn2.31_w8a16_aidlite/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Model Information
|
2 |
+
|
3 |
+
### Source model
|
4 |
+
- Input shape: [1x3x128x128]
|
5 |
+
- Number of parameters: 11.58M
|
6 |
+
- Model size: 46.35M
|
7 |
+
- Output shape: [[1x512],[1x32],[1x2],[1x2],[1x2],[1x2]]
|
8 |
+
|
9 |
+
Source model repository: [Face_Attrib_Net](https://github.com/quic/ai-hub-models/blob/main/qai_hub_models/models/face_attrib_net/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_face_attrib_net_qcs8550_qnn2.31_w8a16_aidlite/models/face_attrib_net_w8a16.qnn231.ctx.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ff0e28415df8faff482cf4960a6eb24e40d1a325d6f5d661e5b6a03174d1a5fb
|
3 |
+
size 13474824
|
model_farm_face_attrib_net_qcs8550_qnn2.31_w8a16_aidlite/python/test.jpg
ADDED
![]() |
Git LFS Details
|