Add config for Hub download statistics
Browse files- config.json +44 -0
config.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "audio8_asr_ios_ane",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Audio8ASRForIOSANE"
|
| 5 |
+
],
|
| 6 |
+
"task": "automatic-speech-recognition",
|
| 7 |
+
"library_name": "coreml",
|
| 8 |
+
"license": "apache-2.0",
|
| 9 |
+
"base_model": "AutoArk-AI/Audio8-ASR-0.1B",
|
| 10 |
+
"onnx_runtime_model": "AutoArk-AI/Audio8-ASR-0.1B-onnx-runtime",
|
| 11 |
+
"asset_bundle": "dist/ASRModels.bundle",
|
| 12 |
+
"languages": [
|
| 13 |
+
"en",
|
| 14 |
+
"zh",
|
| 15 |
+
"yue",
|
| 16 |
+
"fr",
|
| 17 |
+
"ja"
|
| 18 |
+
],
|
| 19 |
+
"audio_head": {
|
| 20 |
+
"file": "tower.mlmodelc",
|
| 21 |
+
"format": "Core ML mlmodelc",
|
| 22 |
+
"execution": "Apple Neural Engine",
|
| 23 |
+
"storage_precision": "mixed_float16_int8",
|
| 24 |
+
"compute_precision": "mixed_float16_int32",
|
| 25 |
+
"output_dtype": "float16"
|
| 26 |
+
},
|
| 27 |
+
"decoder": {
|
| 28 |
+
"format": "ONNX Runtime",
|
| 29 |
+
"execution": "CPU",
|
| 30 |
+
"weight_precision": "int4",
|
| 31 |
+
"prefill_graph": "lm_prefill.onnx",
|
| 32 |
+
"decode_graph": "lm_decode.onnx",
|
| 33 |
+
"shared_weights": "lm_shared_int4.data"
|
| 34 |
+
},
|
| 35 |
+
"token_embedding": {
|
| 36 |
+
"file": "token_embedding_fp16.bin",
|
| 37 |
+
"dtype": "float16",
|
| 38 |
+
"vocab_size": 151652,
|
| 39 |
+
"hidden_size": 512
|
| 40 |
+
},
|
| 41 |
+
"download_stats": {
|
| 42 |
+
"huggingface_query_file": "config.json"
|
| 43 |
+
}
|
| 44 |
+
}
|