Kousik Kumar Siddavaram commited on
Commit
1ec19e3
·
1 Parent(s): c6b437b

Updated expression recognition

Browse files
Files changed (1) hide show
  1. requirements.txt +7 -8
requirements.txt CHANGED
@@ -4,22 +4,21 @@ pydantic==1.10.10
4
  requests==2.23.0
5
  jinja2==3.1.2
6
  python-multipart==0.0.6
7
-
8
  # --- ML and Image Processing ---
9
- scikit-learn==1.7.2
10
  joblib==1.3.2
11
  Pillow==10.1.0
12
  torch==2.1.0
13
  torchvision==0.16.0
14
  matplotlib==3.7.1
15
  numpy==1.24.3
16
- pandas==2.2.2
17
  opencv-python-headless==4.8.1.78
18
  # New dependencies inferred from imports:
19
  facenet-pytorch==2.5.3
20
- transformers>=4.35.0
21
- huggingface-hub>=0.19.0
22
- tqdm>=4.66.1
23
-
24
  # Optional: For better performance
25
- accelerate==0.25.0 # Faster model loading
 
 
4
  requests==2.23.0
5
  jinja2==3.1.2
6
  python-multipart==0.0.6
 
7
  # --- ML and Image Processing ---
8
+ scikit-learn==1.3.2 #CHANGED: 1.7.2 doesn't exist
9
  joblib==1.3.2
10
  Pillow==10.1.0
11
  torch==2.1.0
12
  torchvision==0.16.0
13
  matplotlib==3.7.1
14
  numpy==1.24.3
15
+ pandas==2.0.3 #CHANGED: 2.2.2 incompatible with numpy 1.24.3
16
  opencv-python-headless==4.8.1.78
17
  # New dependencies inferred from imports:
18
  facenet-pytorch==2.5.3
19
+ transformers==4.36.0 #CHANGED: Fixed version to avoid Python 3.11 issue
20
+ huggingface-hub==0.19.0 #CHANGED: Pinned for stability
21
+ tqdm==4.66.1 #CHANGED: Pinned for stability
 
22
  # Optional: For better performance
23
+ accelerate==0.25.0 # Faster model loading
24
+ python-3.10.13