Mizo Automatic Speech Recognition (ASR) Models v3.0
Collection
This collection features state-of-the-art Automatic Speech Recognition (ASR) models fine-tuned specifically for the Mizo language. • 40 items • Updated
This model is a fine-tuned version of openai/whisper-large-v3-turbo on the MiZonal v3.0 dataset.
It achieves the following results on the evaluation set:
import torch
import librosa
from transformers import WhisperProcessor, WhisperForConditionalGeneration
device = "cuda" if torch.cuda.is_available() else "cpu"
processor = WhisperProcessor.from_pretrained("andrewbawitlung/whisper-large-v3-turbo-mizonal3-E1-lus-v2026.06")
model = WhisperForConditionalGeneration.from_pretrained("andrewbawitlung/whisper-large-v3-turbo-mizonal3-E1-lus-v2026.06").to(device)
audio, sr = librosa.load("your_audio.wav", sr=16000)
input_features = processor(audio, sampling_rate=16000, return_tensors="pt").input_features.to(device)
with torch.no_grad():
predicted_ids = model.generate(input_features, max_new_tokens=256)
transcription = processor.batch_decode(predicted_ids, skip_special_tokens=True)[0]
print(transcription)
This repository is part of a series of experiments. The different configurations are:
| Experiment | Hugging Face Repository |
|---|---|
| E1 (Baseline) | andrewbawitlung/whisper-large-v3-turbo-mizonal3-E1-lus-v2026.06 |
| E2 (Noise) | andrewbawitlung/whisper-large-v3-turbo-mizonal3-E2-lus-v2026.06 |
| E3 (Speed) | andrewbawitlung/whisper-large-v3-turbo-mizonal3-E3-lus-v2026.06 |
| E4 (SpecAug) | andrewbawitlung/whisper-large-v3-turbo-mizonal3-E4-lus-v2026.06 |
| E5 (Combined) | andrewbawitlung/whisper-large-v3-turbo-mizonal3-E5-lus-v2026.06 |
The following hyperparameters were used during training:
| step | epoch | train_loss | eval_loss | eval_wer | eval_cer | learning_rate | grad_norm |
|---|---|---|---|---|---|---|---|
| 250 | 0.9107 | 0.4605 | 0.4389 | 29.9406 | 6.7554 | 4.98e-06 | 9.7224 |
| 500 | 1.8197 | 0.2943 | 0.3240 | 22.6136 | 5.0148 | 9.98e-06 | 7.8017 |
| 750 | 2.7286 | 0.1915 | 0.2703 | 19.6945 | 4.1455 | 8.54e-06 | 6.2710 |
| 1000 | 3.6375 | 0.1138 | 0.2588 | 17.1451 | 3.6383 | 7.06e-06 | 3.8060 |
| 1250 | 4.5464 | 0.0663 | 0.2459 | 16.5807 | 3.4139 | 5.59e-06 | 3.0444 |
| 1500 | 5.4554 | 0.0349 | 0.2604 | 17.6219 | 3.6313 | 4.12e-06 | 3.4490 |
| 1750 | 6.3643 | 0.0175 | 0.2644 | 15.5687 | 3.3150 | 2.65e-06 | 3.3370 |
| 2000 | 7.2732 | 0.0067 | 0.2698 | 15.1990 | 3.2125 | 1.18e-06 | 1.0645 |
Base model
openai/whisper-large-v3