mlboydaisuke commited on
Commit
16965df
·
verified ·
1 Parent(s): 6aa677e

Add config.json so the Hub can count downloads

Browse files
Files changed (1) hide show
  1. config.json +62 -0
config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "executorch-pte",
3
+ "format": "pte",
4
+ "framework": "ExecuTorch",
5
+ "source": "ChaoningZhang/MobileSAM + dhkim2810/MobileSAM weights",
6
+ "inputs": [
7
+ [
8
+ 1,
9
+ 256,
10
+ 64,
11
+ 64
12
+ ],
13
+ [
14
+ 1,
15
+ 1,
16
+ 2
17
+ ],
18
+ [
19
+ 1,
20
+ 1
21
+ ]
22
+ ],
23
+ "variants": [
24
+ {
25
+ "file": "mobilesam_decoder_coreml_all.pte",
26
+ "backend": "coreml",
27
+ "precision": "fp16",
28
+ "size_mb": 16.9
29
+ },
30
+ {
31
+ "file": "mobilesam_decoder_xnnpack_fp16.pte",
32
+ "backend": "xnnpack",
33
+ "precision": "fp16",
34
+ "size_mb": 10.5
35
+ },
36
+ {
37
+ "file": "mobilesam_decoder_xnnpack_fp32.pte",
38
+ "backend": "xnnpack",
39
+ "precision": "fp32",
40
+ "size_mb": 20.5
41
+ },
42
+ {
43
+ "file": "mobilesam_encoder_coreml_all.pte",
44
+ "backend": "coreml",
45
+ "precision": "fp16",
46
+ "size_mb": 15.0
47
+ },
48
+ {
49
+ "file": "mobilesam_encoder_xnnpack_fp32.pte",
50
+ "backend": "xnnpack",
51
+ "precision": "fp32",
52
+ "size_mb": 28.3
53
+ },
54
+ {
55
+ "file": "mobilesam_encoder_xnnpack_int8.pte",
56
+ "backend": "xnnpack",
57
+ "precision": "int8",
58
+ "size_mb": 14.0
59
+ }
60
+ ],
61
+ "note": "ExecuTorch .pte exports. See README.md for variant selection and run instructions."
62
+ }