Spaces:
Configuration error
Configuration error
Update requirements.txt
Browse files- requirements.txt +21 -11
requirements.txt
CHANGED
@@ -1,11 +1,21 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
gradio>=4.0.0
|
3 |
+
numpy>=1.22.0
|
4 |
+
pandas>=1.5.0
|
5 |
+
matplotlib>=3.5.0
|
6 |
+
pillow>=9.0.0
|
7 |
+
opencv-python>=4.7.0
|
8 |
+
|
9 |
+
# Facial analysis libraries - dlib with prebuilt binaries
|
10 |
+
dlib-binary>=19.22.1 # Use prebuilt binaries instead of compiling from source
|
11 |
+
deepface>=0.0.79
|
12 |
+
|
13 |
+
# Lightweight alternatives in case DeepFace is too heavy
|
14 |
+
# face-recognition>=1.3.0 # Optional alternative that uses dlib under the hood
|
15 |
+
|
16 |
+
# Google Gemini API
|
17 |
+
google-generativeai>=0.3.0
|
18 |
+
|
19 |
+
# Utilities
|
20 |
+
python-dotenv>=1.0.0 # For loading API key from .env file
|
21 |
+
tqdm>=4.65.0 # For progress bars
|