yunusajib commited on
Commit
8fc971a
·
verified ·
1 Parent(s): a054bd4

third Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +26 -11
requirements.txt CHANGED
@@ -1,14 +1,29 @@
 
1
  gradio>=4.0.0
2
- opencv-python-headless==4.8.1.78
3
  pandas>=1.5.0
4
- matplotlib>=3.6.0
5
- fer>=22.5.1
6
- tensorflow>=2.10.0
7
- numpy>=1.21.0
8
- Pillow>=9.0.0
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  mtcnn>=0.1.1
10
- moviepy>=1.0.3
11
- imageio>=2.22.0
12
- imageio-ffmpeg>=0.4.7 # Required for video processing
13
- scikit-image>=0.19.0
14
- scipy>=1.9.0
 
 
1
+ # Core dependencies
2
  gradio>=4.0.0
3
+ numpy>=1.21.0,<2.0.0
4
  pandas>=1.5.0
5
+
6
+ # Image and video processing
7
+ opencv-python-headless==4.8.1.78
8
+ Pillow>=9.0.0,<11.0.0
9
+ imageio>=2.22.0,<3.0.0
10
+ imageio-ffmpeg>=0.4.7
11
+ scikit-image>=0.19.0,<0.23.0
12
+
13
+ # Video processing - MoviePy with explicit dependencies
14
+ moviepy>=1.0.3,<2.0.0
15
+ decorator>=4.0.2
16
+
17
+ # Machine learning and deep learning
18
+ tensorflow>=2.10.0,<2.16.0
19
+ scipy>=1.9.0,<2.0.0
20
+ matplotlib>=3.6.0,<4.0.0
21
+
22
+ # Face detection and emotion recognition
23
  mtcnn>=0.1.1
24
+ fer>=22.5.1
25
+
26
+ # Additional dependencies that might be missing
27
+ requests>=2.28.0
28
+ tqdm>=4.64.0
29
+ proglog>=0.1.9