msluszniak commited on
Commit
1bc1f34
·
verified ·
1 Parent(s): 9f1af53

Add spec-compliant config.json files

Browse files
Files changed (1) hide show
  1. xnnpack/config.json +24 -0
xnnpack/config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://huggingface.co/software-mansion/react-native-executorch-spec/resolve/main/config.schema.json",
3
+ "model": "lraspp_mobilenet_v3_large",
4
+ "family": "lraspp",
5
+ "capabilities": [
6
+ "semantic-segmentation"
7
+ ],
8
+ "backend": "xnnpack",
9
+ "license": "bsd-3-clause",
10
+ "variants": [
11
+ {
12
+ "file": "lraspp_mobilenet_v3_large_xnnpack_fp32.pte",
13
+ "precision": "fp32",
14
+ "quantized": false,
15
+ "default": true
16
+ },
17
+ {
18
+ "file": "lraspp_mobilenet_v3_large_xnnpack_int8.pte",
19
+ "precision": "int8",
20
+ "quantized": true,
21
+ "default": true
22
+ }
23
+ ]
24
+ }