ACGMN commited on
Commit
b484da8
1 Parent(s): b59dd62

Update README.md

Browse files

Update description on faster-whisper

Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -57,19 +57,19 @@ When more than one file is processed, the UI will also generate a "All_Output" z
57
  You can choose between using `whisper` or `faster-whisper`. [Faster Whisper](https://github.com/guillaumekln/faster-whisper) as a drop-in replacement for the
58
  default Whisper which achieves up to a 4x speedup and 2x reduction in memory usage.
59
 
60
- You can install the requirements for a specific Whisper implementation in `requirements-fastWhisper.txt`
61
  or `requirements-whisper.txt`:
62
  ```
63
- pip install -r requirements-fastWhisper.txt
64
  ```
65
- And then run the App or the CLI with the `--whisper_implementation fast-whisper` flag:
66
  ```
67
- python app.py --whisper_implementation fast-whisper --input_audio_max_duration -1 --server_name 127.0.0.1 --auto_parallel True
68
  ```
69
  You can also select the whisper implementation in `config.json5`:
70
  ```json5
71
  {
72
- "whisper_implementation": "fast-whisper"
73
  }
74
  ```
75
  ### GPU Acceleration
 
57
  You can choose between using `whisper` or `faster-whisper`. [Faster Whisper](https://github.com/guillaumekln/faster-whisper) as a drop-in replacement for the
58
  default Whisper which achieves up to a 4x speedup and 2x reduction in memory usage.
59
 
60
+ You can install the requirements for a specific Whisper implementation in `requirements-fasterWhisper.txt`
61
  or `requirements-whisper.txt`:
62
  ```
63
+ pip install -r requirements-fasterWhisper.txt
64
  ```
65
+ And then run the App or the CLI with the `--whisper_implementation faster-whisper` flag:
66
  ```
67
+ python app.py --whisper_implementation faster-whisper --input_audio_max_duration -1 --server_name 127.0.0.1 --auto_parallel True
68
  ```
69
  You can also select the whisper implementation in `config.json5`:
70
  ```json5
71
  {
72
+ "whisper_implementation": "faster-whisper"
73
  }
74
  ```
75
  ### GPU Acceleration