Spaces:
Sleeping
Sleeping
third Update requirements.txt
Browse files- requirements.txt +26 -11
requirements.txt
CHANGED
@@ -1,14 +1,29 @@
|
|
|
|
1 |
gradio>=4.0.0
|
2 |
-
|
3 |
pandas>=1.5.0
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
mtcnn>=0.1.1
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
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
|