CoolFace
Modelpublic

inesc-id/WhisperLv3-X-PT-All

sourceHugging Facemitupdated 5mo agoView on Hugging Face
5likes49downloads
Model Card

WhisperX Large-v3 — PRE-ACORDO

This model is a fine-tuned [Whisper](https://github.com/m-bain/whisperX) variant of openai/whisper-large-v3, trained for Portuguese (pt) (European Portuguese, Brazilian and African and Asian Portuguese varieties) automatic speech recognition (ASR). From CAMÕES work. ---

🧠 Model Description

  • —Base model: openai/whisper-large-v3
  • —Architecture: Transformer encoder–decoder
  • —Training: Fine-tuned on around 800 hours of Portuguese speech
  • —Task: Transcription (task="transcribe")
  • —Compute type: float16 (recommended)

🧩 Usage

python
import whisperx

device = "cuda"  # or "cpu"
compute_type = "float16"

model = whisperx.load_model(
    "inesc-id/WhisperLv3-X-PT-All",
    device=device,
    compute_type=compute_type,
    language="pt",
    task="transcribe"
)