examples : update model names in parakeet-cli README.md [no ci] (#3906)
This commit updates the parakeet model names which are currently missing the 'ggml-' prefix.
This commit is contained in:
parent
bae6bc02b1
commit
43d78af5be
|
|
@ -4,7 +4,7 @@ This is an example of using the [Parakeet] model in whisper.cpp.
|
||||||
|
|
||||||
### Download converted model
|
### Download converted model
|
||||||
```console
|
```console
|
||||||
$ hf download ggml-org/parakeet-GGUF parakeet-tdt-0.6b-v3-f16.bin --local-dir models
|
$ hf download ggml-org/parakeet-GGUF ggml-parakeet-tdt-0.6b-v3-f16.bin --local-dir models
|
||||||
```
|
```
|
||||||
|
|
||||||
### Building
|
### Building
|
||||||
|
|
@ -32,7 +32,7 @@ options:
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
```console
|
```console
|
||||||
$ ./build/bin/parakeet-cli -m models/parakeet-tdt-0.6b-v3-f16.bin -f samples/jfk.wav
|
$ ./build/bin/parakeet-cli -m models/ggml-parakeet-tdt-0.6b-v3-f16.bin -f samples/jfk.wav
|
||||||
Processing audio (176000 samples, 11.00 seconds)
|
Processing audio (176000 samples, 11.00 seconds)
|
||||||
Processing audio: total_frames=1101, chunk_size=1101
|
Processing audio: total_frames=1101, chunk_size=1101
|
||||||
parakeet_decode: starting decode with n_frames=138
|
parakeet_decode: starting decode with n_frames=138
|
||||||
|
|
@ -41,7 +41,7 @@ And so, my fellow Americans, ask not what your country can do for you, ask what
|
||||||
|
|
||||||
To print segment information:
|
To print segment information:
|
||||||
```console
|
```console
|
||||||
$ ./build/bin/parakeet-cli -m models/parakeet-tdt-0.6b-v3-f16.bin -f samples/jfk.wav --print-segments
|
$ ./build/bin/parakeet-cli -m models/ggml-parakeet-tdt-0.6b-v3-f16.bin -f samples/jfk.wav --print-segments
|
||||||
Processing audio (176000 samples, 11.00 seconds)
|
Processing audio (176000 samples, 11.00 seconds)
|
||||||
Processing audio: total_frames=1101, chunk_size=1101
|
Processing audio: total_frames=1101, chunk_size=1101
|
||||||
parakeet_decode: starting decode with n_frames=138
|
parakeet_decode: starting decode with n_frames=138
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue