Views
No views yet
1from faster_whisper import WhisperModel
2
3model = WhisperModel("deepdml/faster-distil-whisper-large-v3.5")
4
5segments, info = model.transcribe("audio.mp3")
6for segment in segments:
7 print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))compute_type option in CTranslate2.1@misc{deepdml/faster-distil-whisper-large-v3.5,
2 title={Faster Whisper ct2 Distil large-v3.5},
3 author={Jimenez, David},
4 howpublished={\url{https://huggingface.co/deepdml/faster-distil-whisper-large-v3.5}},
5 year={2025}
6 }