Downloads · 30 days
11
19% of all-time downloads
LocalAI-io/whisper-medium-it
whisper-medium-it is a automatic speech recognition model from LocalAI-io. Use it when you need speech turned into text. The card lists the license as mit.
Fine-tuned openai/whisper-medium (769M params) for Italian ASR.
Downloads · 30 days
11
19% of all-time downloads
All-time downloads
59
Public
Parameters
764M
3.1 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors3.1 GB · 100%
From the Hugging Face model README
Fine-tuned openai/whisper-medium (769M params) for Italian ASR.
Author: Ettore Di Giacinto
Brought to you by the LocalAI team. This model can be used directly with LocalAI.
This model is ready to use with LocalAI via the whisperx backend.
Save the following as whisperx-medium-it.yaml in your LocalAI models directory:
name: whisperx-medium-it
backend: whisperx
known_usecases:
- transcript
parameters:
model: LocalAI-io/whisper-medium-it-ct2-int8
language: it
Then transcribe audio via the OpenAI-compatible endpoint:
curl http://localhost:8080/v1/audio/transcriptions \
-H "Content-Type: multipart/form-data" \
-F file="@audio.mp3" \
-F model="whisperx-medium-it"
Evaluated on Common Voice 25.0 Italian test set (15,184 samples):
| Step | WER |
|---|---|
| 1000 | 14.61% |
| 3000 | 13.77% |
| 5000 | 12.42% |
| 7000 | 11.58% |
| 9000 | 10.66% |
| 10000 | 10.47% |
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="LocalAI-io/whisper-medium-it")
result = pipe("audio.mp3", generate_kwargs={"language": "it", "task": "transcribe"})
print(result["text"])
For optimized CPU inference: LocalAI-io/whisper-medium-it-ct2-int8