ans123 commited on
Commit
c06a24e
·
verified ·
1 Parent(s): 2f82426

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +21 -11
requirements.txt CHANGED
@@ -1,11 +1,21 @@
1
- gradio
2
- numpy
3
- pandas
4
- matplotlib
5
- pillow
6
- opencv-python
7
- dlib
8
- deepface
9
- google-generativeai
10
- python-dotenv
11
- tqdm
 
 
 
 
 
 
 
 
 
 
 
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