PacoFYM commited on
Commit
4ffada7
·
verified ·
1 Parent(s): 52a319b

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +29 -9
requirements.txt CHANGED
@@ -1,10 +1,30 @@
1
- --extra-index-url https://download.pytorch.org/whl/cu121
2
- torch==2.5.1+cu121
3
- torchaudio==2.5.1+cu121
4
- numpy>=2.0.2
5
- gradio>=4.24.0
6
- git+https://github.com/m-bain/whisperx.git@v3.1.1
 
 
 
 
 
 
 
 
 
 
7
  pyannote.audio==3.3.2
8
- huggingface-hub>=0.19.0
9
- ffmpeg-python==0.2.0
10
- pydub==0.25.1
 
 
 
 
 
 
 
 
 
 
 
1
+ # PyTorch и аудио
2
+ torch==2.5.1
3
+ torchaudio==2.5.1
4
+
5
+ # Быстрая транскрипция и WhisperX из проверенного коммита
6
+ faster-whisper==1.1.1
7
+ git+https://github.com/m-bain/whisperx.git@5012650d0f3d8966f3ea517762f952a624996d32#egg=whisperx
8
+
9
+ # Оригинальный OpenAI Whisper (для дополнительных утилит)
10
+ openai-whisper
11
+
12
+ # Обработка аудио
13
+ ffmpeg-python
14
+ pydub
15
+
16
+ # Диаризация
17
  pyannote.audio==3.3.2
18
+
19
+ # Веб‑интерфейс
20
+ gradio>=4.25.0
21
+
22
+ # Трансформеры для вспомогательных моделей
23
+ transformers>=4.30.0
24
+
25
+ # Утилиты
26
+ numpy>=2.0.2
27
+ scipy
28
+ pandas
29
+ tqdm
30
+ huggingface_hub