File size: 834 Bytes
6d4c2a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
license: cc-by-nc-4.0
tags:
- automatic-speech-recognition
- wav2vec2
- mms
- speech
---

# MMS ASR – Custom Fine-tuned Model

This model is a fine-tuned version of **Meta AI's Massively Multilingual Speech (MMS)** model
for automatic speech recognition (ASR).

## Base model
- Meta AI – MMS (Wav2Vec2ForCTC)

## License
This model is released under the **Creative Commons Attribution–NonCommercial 4.0 (CC BY-NC 4.0)** license.

You may use, modify, and share this model **for non-commercial purposes only**.
Commercial use is **not permitted**.

## Attribution
Please cite:
- Meta AI, *Massively Multilingual Speech (MMS)*

## Usage
```python
from transformers import AutoProcessor, Wav2Vec2ForCTC

processor = AutoProcessor.from_pretrained("sb-x/mms-1b-bbl")
model = Wav2Vec2ForCTC.from_pretrained("sb-x/mms-1b-bbl")
```