feat: add config.json (enables Hub download counting — default query file)
Browse files- config.json +35 -0
config.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "eulogik/polywhisper-hinglish-router",
|
| 3 |
+
"model_type": "polywhisper-router",
|
| 4 |
+
"model_version": "v5",
|
| 5 |
+
"architecture": "PolyWhisperRouter",
|
| 6 |
+
"base_model": "openai/whisper-base",
|
| 7 |
+
"task": "automatic-speech-recognition",
|
| 8 |
+
"languages": ["en", "hi"],
|
| 9 |
+
"router": {
|
| 10 |
+
"type": "per-token-mixture-of-experts",
|
| 11 |
+
"params_millions": 0.033,
|
| 12 |
+
"pexpert_weights": "router_best_v5.pt"
|
| 13 |
+
},
|
| 14 |
+
"experts": {
|
| 15 |
+
"en": {"type": "lora", "rank": 8, "layers": "decoder", "file": "en_router_best_v5.pt"},
|
| 16 |
+
"hi": {"type": "lora", "rank": 8, "layers": "decoder", "file": "hi_router_best_v5.pt"}
|
| 17 |
+
},
|
| 18 |
+
"preprocessing": {
|
| 19 |
+
"sampling_rate": 16000,
|
| 20 |
+
"max_audio_seconds": 30,
|
| 21 |
+
"feature_extractor": "openai/whisper-base"
|
| 22 |
+
},
|
| 23 |
+
"generation": {
|
| 24 |
+
"forced_decoder_ids": {"language": "hi", "task": "transcribe"},
|
| 25 |
+
"use_cache": false
|
| 26 |
+
},
|
| 27 |
+
"metrics": {
|
| 28 |
+
"wer": 0.588,
|
| 29 |
+
"cer": 0.579,
|
| 30 |
+
"fuzzy_wer": 0.573,
|
| 31 |
+
"test_set": "3129-utterance ortho-normalized Hinglish (MUCS/IndicVoices-ST derived)"
|
| 32 |
+
},
|
| 33 |
+
"license": "mit",
|
| 34 |
+
"date_published": "2026-08-11"
|
| 35 |
+
}
|