Views
No views yet
whisper-sinhala-proto is an experimental Sinhala speech-recognition model based on OpenAI Whisper Small. The checkpoint is intended for early testing, benchmarking, and comparison during Sinhala ASR development.kaan84/whisper-small-sinhala-proto. If both repositories contain equivalent weights, consider keeping one as the canonical prototype and marking the other as archived or superseded to reduce user confusion.| Item | Value |
|---|---|
| Task | Automatic speech recognition |
| Language | Sinhala (si) |
| Base model | openai/whisper-small |
| Model class | AutoModelForSpeechSeq2Seq |
| Parameters | Approximately 241.7M |
| Training dataset tag | large-sinhala-asr-dataset |
| Status | Experimental prototype |
1from transformers import pipeline
2
3transcriber = pipeline(
4 "automatic-speech-recognition",
5 model="kaan84/whisper-sinhala-proto",
6)
7
8result = transcriber(
9 "sample.wav",
10 generate_kwargs={"language": "si", "task": "transcribe"},
11)
12print(result["text"])openai/whisper-small modelkaan84/whisper-small-sinhala-v1kaan84/whisper-small-sinhala-proto