Update README.md
Browse files
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.
|
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
|
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 |
|