gamaly commited on
Commit
4aed66f
·
verified ·
1 Parent(s): 3c76e95

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +24 -8
requirements.txt CHANGED
@@ -1,8 +1,24 @@
1
- setfit>=1.0.0
2
- datasets>=2.14.0
3
- sentence-transformers>=2.2.0
4
- transformers>=4.30.0
5
- pandas>=2.0.0
6
- numpy>=1.24.0
7
- gradio>=4.0.0
8
- huggingface_hub>=0.16.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Gradio Space Requirements for Hugging Face Spaces
2
+ # This file is used when deploying to Hugging Face Spaces
3
+
4
+ # Core SetFit library
5
+ setfit>=1.0.0
6
+
7
+ # Hugging Face ecosystem
8
+ datasets>=2.14.0
9
+ sentence-transformers>=2.2.0
10
+ transformers>=4.30.0
11
+
12
+ # Data handling
13
+ pandas>=2.0.0
14
+ numpy>=1.24.0
15
+
16
+ # Gradio for the web interface
17
+ gradio>=4.0.0
18
+
19
+ # Hugging Face Hub (for loading models)
20
+ huggingface_hub>=0.16.0
21
+
22
+ # Scikit-learn (must match training version for model compatibility)
23
+ # Model was trained with scikit-learn 1.8.0, need >=1.8.0 for predict_proba to work
24
+ scikit-learn>=1.8.0