Views
No views yet
faster-whisper.| Metric | Value |
|---|---|
| Training epochs | 3 |
| Optimization steps | 9,195 |
| Test samples | 12,405 |
| Test WER | 22.1379% |
| Test loss | 0.2795 |
pip install faster-whisper1from faster_whisper import WhisperModel
2
3model = WhisperModel(
4 "maqsudxo1ja/uz-whisper-small-stt-v2",
5 device="cuda",
6 compute_type="float16",
7)
8
9segments, info = model.transcribe(
10 "audio.wav",
11 language="uz",
12 beam_size=5,
13)
14
15text = "".join(segment.text for segment in segments).strip()
16print(text)1from faster_whisper import WhisperModel
2
3model = WhisperModel(
4 "maqsudxo1ja/uz-whisper-small-stt-v2",
5 device="cpu",
6 compute_type="int8",
7)main branch contains CTranslate2 model files and should be loaded with faster-whisper. It is not a standard Transformers checkpoint.backup-transformers-before-finetune-20260810 branch.