mlboydaisuke commited on
Commit
30ecea1
·
verified ·
1 Parent(s): 6fd05eb

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": "openai/whisper-tiny",
6
+ "inputs": [
7
+ [
8
+ 1,
9
+ 1500,
10
+ 384
11
+ ],
12
+ [
13
+ 1,
14
+ 128
15
+ ]
16
+ ],
17
+ "variants": [
18
+ {
19
+ "file": "whisper_tiny_decoder_coreml_all.pte",
20
+ "backend": "coreml",
21
+ "precision": "fp16",
22
+ "size_mb": 59.3
23
+ },
24
+ {
25
+ "file": "whisper_tiny_decoder_xnnpack_fp16.pte",
26
+ "backend": "xnnpack",
27
+ "precision": "fp16",
28
+ "size_mb": 99.1
29
+ },
30
+ {
31
+ "file": "whisper_tiny_decoder_xnnpack_fp32.pte",
32
+ "backend": "xnnpack",
33
+ "precision": "fp32",
34
+ "size_mb": 198.0
35
+ },
36
+ {
37
+ "file": "whisper_tiny_encoder_coreml_all.pte",
38
+ "backend": "coreml",
39
+ "precision": "fp16",
40
+ "size_mb": 16.6
41
+ },
42
+ {
43
+ "file": "whisper_tiny_encoder_xnnpack_fp16.pte",
44
+ "backend": "xnnpack",
45
+ "precision": "fp16",
46
+ "size_mb": 17.6
47
+ },
48
+ {
49
+ "file": "whisper_tiny_encoder_xnnpack_fp32.pte",
50
+ "backend": "xnnpack",
51
+ "precision": "fp32",
52
+ "size_mb": 32.9
53
+ },
54
+ {
55
+ "file": "whisper_tiny_encoder_xnnpack_int8.pte",
56
+ "backend": "xnnpack",
57
+ "precision": "int8",
58
+ "size_mb": 11.7
59
+ }
60
+ ],
61
+ "note": "ExecuTorch .pte exports. See README.md for variant selection and run instructions."
62
+ }