google/fleurs
Viewer • Updated • 768k • 56.7k • 405
How to use amitkot/whisper-small-he-acft with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="amitkot/whisper-small-he-acft") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("amitkot/whisper-small-he-acft")
model = AutoModelForSpeechSeq2Seq.from_pretrained("amitkot/whisper-small-he-acft")Hebrew Whisper Small with ACFT (Audio-Context Fine-Tuning) for optimized short-audio performance, compatible with FUTO Keyboard and whisper.cpp.
Two-stage pipeline:
from transformers import WhisperProcessor, WhisperForConditionalGeneration
processor = WhisperProcessor.from_pretrained("amitkot/whisper-small-he-acft")
model = WhisperForConditionalGeneration.from_pretrained("amitkot/whisper-small-he-acft")
For FUTO Keyboard / whisper.cpp, convert to ggml:
uv run python scripts/pipeline.py \
--finetune-config configs/hebrew_small_finetune.yaml \
--config configs/hebrew_small_acft.yaml
Trained using whisper-acft-pipeline.