msluszniak commited on
Commit
da65d94
·
verified ·
1 Parent(s): 9cb6d4a

Add spec-compliant config.json files

Browse files
Files changed (1) hide show
  1. xnnpack/config.json +48 -0
xnnpack/config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://huggingface.co/software-mansion/react-native-executorch-spec/resolve/main/config.schema.json",
3
+ "model": "deeplab_v3",
4
+ "family": "deeplab",
5
+ "capabilities": [
6
+ "semantic-segmentation"
7
+ ],
8
+ "backend": "xnnpack",
9
+ "license": "bsd-3-clause",
10
+ "variants": [
11
+ {
12
+ "file": "deeplab_v3_xnnpack_fp32.pte",
13
+ "precision": "fp32",
14
+ "quantized": false,
15
+ "default": true
16
+ },
17
+ {
18
+ "file": "deeplab_v3_xnnpack_int8.pte",
19
+ "precision": "int8",
20
+ "quantized": true,
21
+ "default": true
22
+ },
23
+ {
24
+ "file": "deeplab_v3_xnnpack_fp32.pte",
25
+ "precision": "fp32",
26
+ "quantized": false,
27
+ "default": false
28
+ },
29
+ {
30
+ "file": "deeplab_v3_xnnpack_int8.pte",
31
+ "precision": "int8",
32
+ "quantized": true,
33
+ "default": false
34
+ },
35
+ {
36
+ "file": "deeplab_v3_xnnpack_fp32.pte",
37
+ "precision": "fp32",
38
+ "quantized": false,
39
+ "default": false
40
+ },
41
+ {
42
+ "file": "deeplab_v3_xnnpack_int8.pte",
43
+ "precision": "int8",
44
+ "quantized": true,
45
+ "default": false
46
+ }
47
+ ]
48
+ }