CoolFace
Apppublic

meirk/hebrew-whisper-ct2

sourceHugging Facemitupdated 11mo agoView on Hugging Face
0likes
App README

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

python
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" 
)