yunusajib commited on
Commit
8c9916c
·
verified ·
1 Parent(s): 3253f05
Files changed (1) hide show
  1. requirements.txt +19 -13
requirements.txt CHANGED
@@ -1,15 +1,21 @@
 
 
 
1
  gradio>=4.0.0
2
  numpy==1.23.5
3
- opencv-python-headless==4.7.1.72
4
- librosa>=0.10.1
5
- pandas>=1.5.3
6
- plotly>=5.15.0
7
- transformers>=4.35.0
8
- torch>=2.0.0
9
- torchaudio>=2.0.0
10
- accelerate>=0.20.3
11
- scikit-learn>=1.3.0
12
- scipy>=1.10.0
13
- soundfile>=0.12.1
14
- datasets>=2.14.0
15
- Pillow>=9.5.0
 
 
 
 
1
+ # Fixed requirements.txt with available versions
2
+
3
+ # Option 1: Closest to original (recommended)
4
  gradio>=4.0.0
5
  numpy==1.23.5
6
+ opencv-python-headless==4.7.0.72
7
+
8
+ # Alternative Option 2: Latest stable versions
9
+ # gradio>=4.0.0
10
+ # numpy>=1.23.5,<2.0.0
11
+ # opencv-python-headless==4.11.0.86
12
+
13
+ # Alternative Option 3: Flexible versioning
14
+ # gradio>=4.0.0
15
+ # numpy>=1.23.5,<2.0.0
16
+ # opencv-python-headless>=4.7.0,<5.0.0
17
+
18
+ # Alternative Option 4: Modern compatible versions
19
+ # gradio>=4.0.0
20
+ # numpy>=1.24.0,<2.0.0
21
+ # opencv-python-headless>=4.8.0