aoiandroid commited on
Commit
ac300d1
·
verified ·
1 Parent(s): 7040777

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ base_model: facebook/mms-lid-4017
4
+ tags:
5
+ - coreml
6
+ - language-identification
7
+ - audio
8
+ - wav2vec2
9
+ ---
10
+
11
+ # MMS-LID 4017 CoreML
12
+
13
+ CoreML export of [facebook/mms-lid-4017](https://huggingface.co/facebook/mms-lid-4017) for iOS/macOS.
14
+
15
+ - **mms_lid.mlmodel**: CoreML Neural Network (fixed 10s @ 16 kHz mono input, logits output).
16
+ - **mms_lid_id2label.json**: Language ID to label mapping.
17
+
18
+ Input: raw waveform float32, shape `(1, 160000)` (16 kHz, 10 seconds).
19
+ Output: `logits` shape `(1, 4017)`; use `argmax` then `id2label[id]` for language code.
20
+
21
+ See the conversion repo docs for full input/output spec.