Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +9 -10
requirements.txt
CHANGED
|
@@ -1,27 +1,26 @@
|
|
|
|
|
| 1 |
torch==2.1.2
|
| 2 |
torchaudio==2.1.2
|
| 3 |
numpy==1.26.4
|
| 4 |
|
| 5 |
-
# WhisperX
|
| 6 |
whisperx==3.1.1
|
| 7 |
-
|
| 8 |
-
# Faster Whisper (version that does NOT require PyAV)
|
| 9 |
-
faster-whisper==0.10.0
|
| 10 |
-
|
| 11 |
-
# CTranslate2 for CT2 models
|
| 12 |
ctranslate2==4.1.0
|
| 13 |
|
| 14 |
-
# Transformers +
|
| 15 |
transformers==4.38.2
|
| 16 |
huggingface_hub==0.23.0
|
|
|
|
| 17 |
|
| 18 |
# Diarization
|
| 19 |
pyannote.audio==3.1.1
|
|
|
|
|
|
|
| 20 |
|
| 21 |
-
#
|
| 22 |
gradio==4.12.0
|
| 23 |
-
|
| 24 |
-
# Helpers
|
| 25 |
ffmpeg-python==0.2.0
|
| 26 |
accelerate==0.28.0
|
| 27 |
nltk==3.9.1
|
|
|
|
|
|
| 1 |
+
# Core
|
| 2 |
torch==2.1.2
|
| 3 |
torchaudio==2.1.2
|
| 4 |
numpy==1.26.4
|
| 5 |
|
| 6 |
+
# WhisperX + Faster-Whisper
|
| 7 |
whisperx==3.1.1
|
| 8 |
+
faster-whisper==1.0.1
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
ctranslate2==4.1.0
|
| 10 |
|
| 11 |
+
# Transformers + HuggingFace
|
| 12 |
transformers==4.38.2
|
| 13 |
huggingface_hub==0.23.0
|
| 14 |
+
tokenizers==0.15.2
|
| 15 |
|
| 16 |
# Diarization
|
| 17 |
pyannote.audio==3.1.1
|
| 18 |
+
pyannote.core==5.0.0
|
| 19 |
+
pyannote.metrics==3.2.1
|
| 20 |
|
| 21 |
+
# Utils
|
| 22 |
gradio==4.12.0
|
|
|
|
|
|
|
| 23 |
ffmpeg-python==0.2.0
|
| 24 |
accelerate==0.28.0
|
| 25 |
nltk==3.9.1
|
| 26 |
+
pydantic==2.10.6
|