From 8f01aee36b562e6be537e0341cdd40dc8bed33a7 Mon Sep 17 00:00:00 2001 From: Mahmoud Ashraf Date: Wed, 13 Nov 2024 18:26:01 +0200 Subject: [PATCH] Update WhisperModel documentation to list all available models (#1137) --- faster_whisper/transcribe.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/faster_whisper/transcribe.py b/faster_whisper/transcribe.py index 0918328..9143316 100644 --- a/faster_whisper/transcribe.py +++ b/faster_whisper/transcribe.py @@ -546,9 +546,9 @@ class WhisperModel: Args: model_size_or_path: Size of the model to use (tiny, tiny.en, base, base.en, small, small.en, distil-small.en, medium, medium.en, distil-medium.en, large-v1, - large-v2, large-v3, large, distil-large-v2 or distil-large-v3), a path to a - converted model directory, or a CTranslate2-converted Whisper model ID from the HF Hub. - When a size or a model ID is configured, the converted model is downloaded + large-v2, large-v3, large, distil-large-v2, distil-large-v3, large-v3-turbo, or turbo), + a path to a converted model directory, or a CTranslate2-converted Whisper model ID from + the HF Hub. When a size or a model ID is configured, the converted model is downloaded from the Hugging Face Hub. device: Device to use for computation ("cpu", "cuda", "auto"). device_index: Device ID to use.