Spaces:
Build error
Build error
Switch default implementation to faster-whisper
Browse files- config.json5 +1 -1
- requirements.txt +6 -6
config.json5
CHANGED
|
@@ -65,7 +65,7 @@
|
|
| 65 |
// The default implementation to use for Whisper. Can be "whisper" or "faster-whisper".
|
| 66 |
// Note that you must either install the requirements for faster-whisper (requirements-fasterWhisper.txt)
|
| 67 |
// or whisper (requirements.txt)
|
| 68 |
-
"whisper_implementation": "whisper",
|
| 69 |
|
| 70 |
// The default model name.
|
| 71 |
"default_model_name": "medium",
|
|
|
|
| 65 |
// The default implementation to use for Whisper. Can be "whisper" or "faster-whisper".
|
| 66 |
// Note that you must either install the requirements for faster-whisper (requirements-fasterWhisper.txt)
|
| 67 |
// or whisper (requirements.txt)
|
| 68 |
+
"whisper_implementation": "faster-whisper",
|
| 69 |
|
| 70 |
// The default model name.
|
| 71 |
"default_model_name": "medium",
|
requirements.txt
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
transformers
|
| 4 |
ffmpeg-python==0.2.0
|
| 5 |
-
gradio==3.23.0
|
| 6 |
yt-dlp
|
|
|
|
|
|
|
| 7 |
torchaudio
|
| 8 |
-
|
| 9 |
-
json5
|
|
|
|
| 1 |
+
ctranslate2
|
| 2 |
+
faster-whisper
|
|
|
|
| 3 |
ffmpeg-python==0.2.0
|
| 4 |
+
gradio==3.23.0
|
| 5 |
yt-dlp
|
| 6 |
+
json5
|
| 7 |
+
torch
|
| 8 |
torchaudio
|
| 9 |
+
more_itertools
|
|
|