arc-r commited on
Commit
8d0df1f
1 Parent(s): afc54e9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -9,7 +9,7 @@ library_name: ctranslate2
9
 
10
  # whisper-large-v2-mix-jp model for CTranslate2
11
 
12
- This repository contains the conversion of [whisper-large-v2-mix-jp](https://huggingface.co/vumichien/whisper-large-v2-mix-jp) to the [CTranslate2](https://github.com/OpenNMT/CTranslate2) model format.
13
 
14
  This model can be used in CTranslate2 or projects based on CTranslate2 such as [faster-whisper](https://github.com/guillaumekln/faster-whisper).
15
 
@@ -18,7 +18,7 @@ This model can be used in CTranslate2 or projects based on CTranslate2 such as [
18
  ```python
19
  from faster_whisper import WhisperModel
20
 
21
- model = WhisperModel("whisper-large-v2-mix-jp")
22
 
23
  segments, info = model.transcribe("audio.mp3")
24
  for segment in segments:
 
9
 
10
  # whisper-large-v2-mix-jp model for CTranslate2
11
 
12
+ This repository contains the conversion of [vumichien/whisper-large-v2-mix-jp](https://huggingface.co/vumichien/whisper-large-v2-mix-jp) to the [CTranslate2](https://github.com/OpenNMT/CTranslate2) model format.
13
 
14
  This model can be used in CTranslate2 or projects based on CTranslate2 such as [faster-whisper](https://github.com/guillaumekln/faster-whisper).
15
 
 
18
  ```python
19
  from faster_whisper import WhisperModel
20
 
21
+ model = WhisperModel("arc-r/faster-whisper-large-v2-mix-jp")
22
 
23
  segments, info = model.transcribe("audio.mp3")
24
  for segment in segments: