From b1c69927f86ee67184cdb80fafe6f237d94678ef Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Fri, 24 Feb 2023 15:52:23 +0100 Subject: [PATCH] Update code snippet to be consistent with the conversion example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c69975..87f0781 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ If needed, models can also be converted from the code. See the [conversion API]( ```python from faster_whisper import WhisperModel -model_path = "whisper-medium-ct2/" +model_path = "whisper-large-v2-ct2/" # Run on GPU with FP16 model = WhisperModel(model_path, device="cuda", compute_type="float16")