Views
No views yet
openai/whisper-large-v3, trained for European Portuguese (EP) (around 425h) automatic speech recognition (ASR).
From CAMÕES work. This is the best model for long-form inference. The text is normalized.openai/whisper-large-v3task="transcribe")1import whisperx
2
3device = "cuda" # or "cpu"
4compute_type = "float16"
5
6model = whisperx.load_model(
7 "inesc-id/WhisperLv3-EP-X",
8 device=device,
9 compute_type=compute_type,
10 language="pt",
11 task="transcribe"
12)
13
14## Citation
15
16
17**BibTeX:**
18