msluszniak commited on
Commit
a09d146
·
verified ·
1 Parent(s): 51b2dbe

Add spec-compliant config.json files

Browse files
Files changed (1) hide show
  1. xnnpack/config.json +31 -0
xnnpack/config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://huggingface.co/software-mansion/react-native-executorch-spec/resolve/main/config.schema.json",
3
+ "model": "clip_vit_base_patch32",
4
+ "family": "clip",
5
+ "capabilities": [
6
+ "text-embedding",
7
+ "image-embedding"
8
+ ],
9
+ "backend": "xnnpack",
10
+ "license": "mit",
11
+ "variants": [
12
+ {
13
+ "file": "clip_vit_base_patch32_xnnpack_fp32.pte",
14
+ "precision": "fp32",
15
+ "quantized": false,
16
+ "default": true
17
+ },
18
+ {
19
+ "file": "clip_vit_base_patch32_xnnpack_fp32.pte",
20
+ "precision": "fp32",
21
+ "quantized": false,
22
+ "default": false
23
+ },
24
+ {
25
+ "file": "clip_vit_base_patch32_xnnpack_int8.pte",
26
+ "precision": "int8",
27
+ "quantized": true,
28
+ "default": true
29
+ }
30
+ ]
31
+ }