NickVerri commited on
Commit
dc1ddff
·
verified ·
1 Parent(s): ff9070c

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +6 -9
requirements.txt CHANGED
@@ -1,19 +1,16 @@
1
- # 1. Core numerics - Pin numpy < 2.0 to prevent binary incompatibility
2
  numpy<2.0
3
  pandas
4
 
5
- # 2. PyTorch - Pin to a stable version (2.5.1 is safe/modern)
6
- torch==2.5.1
7
- torchaudio==2.5.1
8
-
9
- # 3. Audio & Diarization - CRITICAL FIX
10
- # WhisperX breaks with pyannote.audio > 3.1.1
11
  pyannote.audio==3.1.1
12
 
13
- # 4. The Main Library
 
14
  git+https://github.com/m-bain/whisperx.git
15
 
16
- # 5. UI & Utils
17
  streamlit
18
  requests
19
  ffmpeg-python
 
1
+ # 1. Core numerics - Pin numpy < 2.0 is CRITICAL
2
  numpy<2.0
3
  pandas
4
 
5
+ # 2. Audio & Diarization
6
+ # We pin pyannote to 3.1.1 because WhisperX is not compatible with 3.2+
 
 
 
 
7
  pyannote.audio==3.1.1
8
 
9
+ # 3. The Main Library
10
+ # This will automatically install the correct torch/torchaudio versions
11
  git+https://github.com/m-bain/whisperx.git
12
 
13
+ # 4. UI & Utils
14
  streamlit
15
  requests
16
  ffmpeg-python