pip install unhallucinated-faster-whisper
from faster_whisper import WhisperModel
model_size = "turbo"
model = WhisperModel(model_size, device="cpu")
Simply pass unhallucinated=True when transcribing
segments, info = model.transcribe("voice.mp3", unhallucinated=True)
Compatible with all Whisper models.