asahi417 commited on
Commit
f6503d3
·
verified ·
1 Parent(s): 6edb029

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -32,7 +32,7 @@ wget https://huggingface.co/kotoba-tech/kotoba-whisper-v1.0-ggml/resolve/main/gg
32
 
33
  ```bash
34
  wget https://huggingface.co/kotoba-tech/kotoba-whisper-v1.0-ggml/resolve/main/sample_ja_speech.wav
35
- make -j && ./main -m models/ggml-kotoba-whisper-v1.0.bin -f sample_ja_speech.wav -oj sample_ja_speech.transcription.json -ml 40
36
  ```
37
 
38
  Note that it runs only with 16-bit WAV files, so make sure to convert your input before running the tool. For example, you can use ffmpeg like this:
@@ -49,7 +49,7 @@ wget https://huggingface.co/kotoba-tech/kotoba-whisper-v1.0-ggml/resolve/main/gg
49
 
50
  Run inference on the sample audio:
51
  ```bash
52
- make -j && ./main -m models/ggml-kotoba-whisper-v1.0-q5_0.bin -f sample_ja_speech.wav
53
  ```
54
 
55
 
 
32
 
33
  ```bash
34
  wget https://huggingface.co/kotoba-tech/kotoba-whisper-v1.0-ggml/resolve/main/sample_ja_speech.wav
35
+ make -j && ./main -m models/ggml-kotoba-whisper-v1.0.bin -f sample_ja_speech.wav -oj transcription.json -ml 30
36
  ```
37
 
38
  Note that it runs only with 16-bit WAV files, so make sure to convert your input before running the tool. For example, you can use ffmpeg like this:
 
49
 
50
  Run inference on the sample audio:
51
  ```bash
52
+ make -j && ./main -m models/ggml-kotoba-whisper-v1.0-q5_0.bin -f sample_ja_speech.wav -oj transcription-quantized.json -ml 30
53
  ```
54
 
55