Whisper Tiny Papiamento - Medical Domain Adaptation

This model is a medical domain fine-tuned version of sonnygeorge/whisper-tiny-pap specialized for healthcare and clinical Papiamento speech recognition.

Model Description

  • Base model: sonnygeorge/whisper-tiny-pap (Papiamento Whisper model by Sonny George)
  • Domain: Medical/Healthcare Papiamento
  • Language: Papiamento (pap)
  • Specialization: Clinical terminology, medical consultations, healthcare vocabulary
  • Training: Fine-tuned on medical Papiamento audio data

Model Performance

This model builds upon Sonny George's excellent Papiamento Whisper foundation and adds:

  • βœ… Enhanced medical terminology recognition
  • βœ… Clinical context understanding
  • βœ… Healthcare vocabulary optimization
  • βœ… Single speaker adaptation for consistent medical speech patterns

Intended Uses

  • Medical consultation transcription in Papiamento
  • Clinical note generation from Papiamento audio
  • Healthcare documentation automation
  • Medical terminology recognition in Papiamento

Usage

from transformers import WhisperProcessor, WhisperForConditionalGeneration
import librosa

# Load model and processor
processor = WhisperProcessor.from_pretrained("your-username/whisper-tiny-pap-medical")
model = WhisperForConditionalGeneration.from_pretrained("your-username/whisper-tiny-pap-medical")

# Load medical audio
audio, sr = librosa.load("medical_consultation.m4a", sr=16000)

# Process and transcribe
inputs = processor(audio, sampling_rate=16000, return_tensors="pt")
predicted_ids = model.generate(inputs["input_features"])
transcription = processor.batch_decode(predicted_ids, skip_special_tokens=True)[0]

print(transcription)  # Medical Papiamento transcription
Downloads last month
72
Safetensors
Model size
37.8M params
Tensor type
F32
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Space using matiows/whisper-tiny-pap-medical 1