asahi417 commited on
Commit
ae9f0d2
·
verified ·
1 Parent(s): bbc969f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -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("kotoba-tech/kotoba-whisper-v1.02")
22
 
23
  segments, info = model.transcribe("audio.mp3")
24
  for segment in segments:
@@ -30,7 +30,7 @@ for segment in segments:
30
  The original model was converted with the following command:
31
 
32
  ```
33
- ct2-transformers-converter --model distil-whisper/distil-large-v2 --output_dir faster-distil-whisper-large-v2 \
34
  --copy_files tokenizer.json preprocessor_config.json --quantization float16
35
  ```
36
 
 
18
  ```python
19
  from faster_whisper import WhisperModel
20
 
21
+ model = WhisperModel("kotoba-tech/kotoba-whisper-v1.0")
22
 
23
  segments, info = model.transcribe("audio.mp3")
24
  for segment in segments:
 
30
  The original model was converted with the following command:
31
 
32
  ```
33
+ ct2-transformers-converter --model kotoba-tech/kotoba-whisper-v1.0 --output_dir faster-kotoba-tech/kotoba-whisper-v1.0 \
34
  --copy_files tokenizer.json preprocessor_config.json --quantization float16
35
  ```
36