Spaces:
Runtime error
Runtime error
Update README.md
Browse filesUpdate description on faster-whisper
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-
|
| 61 |
or `requirements-whisper.txt`:
|
| 62 |
```
|
| 63 |
-
pip install -r requirements-
|
| 64 |
```
|
| 65 |
-
And then run the App or the CLI with the `--whisper_implementation
|
| 66 |
```
|
| 67 |
-
python app.py --whisper_implementation
|
| 68 |
```
|
| 69 |
You can also select the whisper implementation in `config.json5`:
|
| 70 |
```json5
|
| 71 |
{
|
| 72 |
-
"whisper_implementation": "
|
| 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
|