Instructions to use amitkot/whisper-yoad-tiny-he-acft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use amitkot/whisper-yoad-tiny-he-acft with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="amitkot/whisper-yoad-tiny-he-acft")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("amitkot/whisper-yoad-tiny-he-acft") model = AutoModelForSpeechSeq2Seq.from_pretrained("amitkot/whisper-yoad-tiny-he-acft") - Notebooks
- Google Colab
- Kaggle
whisper-yoad-tiny-he-acft
ACFT (Audio Context Fine-Tuning) applied to yoad/whisper-tiny for Hebrew speech recognition.
ACFT aligns partial-context encoder representations with full-context ones, improving short-utterance inference (e.g., keyboard dictation).
Evaluation
WER on ivrit-ai/whisper-training test split (2000 samples, no normalization):
| Model | WER |
|---|---|
| yoad/whisper-tiny (base) | 0.3978 |
| yoad/whisper-tiny + ACFT (this model) | 0.3993 |
Training
- Method: ACFT (encoder MSE alignment)
- Dataset: google/fleurs he_il
- Epochs: 8
- Device: Apple MPS (M4 Pro)
Usage
from transformers import WhisperForConditionalGeneration, WhisperProcessor
model = WhisperForConditionalGeneration.from_pretrained("amitkot/whisper-yoad-tiny-he-acft")
processor = WhisperProcessor.from_pretrained("amitkot/whisper-yoad-tiny-he-acft")
- Downloads last month
- 3
Model tree for amitkot/whisper-yoad-tiny-he-acft
Base model
yoad/whisper-tiny