yunusajib commited on
Commit
66616ef
·
verified ·
1 Parent(s): 38fef5b
Files changed (1) hide show
  1. requirements.txt +48 -17
requirements.txt CHANGED
@@ -1,22 +1,53 @@
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
  plotly>=5.0.0
8
 
9
- # Alternative Option 2: Latest stable versions
10
- # gradio>=4.0.0
11
- # numpy>=1.23.5,<2.0.0
12
- # opencv-python-headless==4.11.0.86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
- # Alternative Option 3: Flexible versioning
15
- # gradio>=4.0.0
16
- # numpy>=1.23.5,<2.0.0
17
- # opencv-python-headless>=4.7.0,<5.0.0
18
 
19
- # Alternative Option 4: Modern compatible versions
20
- # gradio>=4.0.0
21
- # numpy>=1.24.0,<2.0.0
22
- # opencv-python-headless>=4.8.0
 
1
+ # Core Dependencies
 
 
2
  gradio>=4.0.0
3
+ numpy>=1.21.0
4
+ pandas>=1.3.0
5
+ opencv-python>=4.5.0
6
+ librosa>=0.9.0
7
  plotly>=5.0.0
8
 
9
+ # Audio Processing
10
+ soundfile>=0.10.0
11
+ scipy>=1.7.0
12
+ numba>=0.56.0
13
+
14
+ # Additional Audio Features (optional but recommended)
15
+ pydub>=0.25.0
16
+ webrtcvad>=2.0.10
17
+
18
+ # For Production Use - Emotion Recognition Models
19
+ # Uncomment and install these for actual emotion detection:
20
+
21
+ # Deep Learning Frameworks
22
+ # torch>=1.12.0
23
+ # torchvision>=0.13.0
24
+ # tensorflow>=2.9.0
25
+
26
+ # Computer Vision & Face Detection
27
+ # dlib>=19.24.0
28
+ # mediapipe>=0.8.10
29
+ # face-recognition>=1.3.0
30
+
31
+ # Advanced Audio Processing
32
+ # pyaudio>=0.2.11
33
+ # speechrecognition>=3.10.0
34
+ # python-speech-features>=0.6
35
+
36
+ # Model Loading & Processing
37
+ # transformers>=4.20.0
38
+ # huggingface-hub>=0.8.0
39
+ # onnxruntime>=1.12.0
40
+
41
+ # Data Science & ML Utilities
42
+ # scikit-learn>=1.1.0
43
+ # joblib>=1.1.0
44
+ # pickle5>=0.0.11
45
 
46
+ # System & Performance
47
+ # psutil>=5.9.0
48
+ # multiprocessing-logging>=0.3.4
 
49
 
50
+ # Development & Testing (optional)
51
+ # pytest>=7.0.0
52
+ # black>=22.0.0
53
+ # flake8>=4.0.0