meirk/hebrew-whisper-ct2
0
Hebrew Speech-to-Text with Whisper CT2
Fast and accurate Hebrew transcription using the optimized CTranslate2 version of Whisper.
Features
- ๐ 26x faster than real-time on GPU
- ๐ฏ Optimized for Hebrew language
- ๐ Multiple output formats (text, SRT, VTT, JSON)
- ๐ API access available
Model
Using ivrit-ai/whisper-large-v3-turbo-ct2 - a Hebrew fine-tuned version of OpenAI's Whisper.
API Usage
from gradio_client import Client
client = Client("meirk/hebrew-whisper-ct2")
result = client.predict(
audio_path="path/to/hebrew_audio.mp3",
output_format="srt",
beam_size=5,
api_key="", # Leave empty if no authentication
api_name="/predict"
)