AryanPrakhar commited on
Commit
2dba785
·
verified ·
1 Parent(s): 10afef1

Add requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +25 -0
requirements.txt ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core ML Libraries
2
+ scikit-learn>=1.3.0
3
+ numpy>=1.24.0
4
+ pandas>=2.0.0
5
+
6
+ # Sentence Transformers & Embeddings
7
+ sentence-transformers>=2.2.0
8
+ transformers>=4.30.0
9
+ torch>=2.0.0
10
+
11
+ # XGBoost for Ensemble
12
+ xgboost>=2.0.0
13
+
14
+ # Utilities
15
+ tqdm>=4.65.0
16
+ pickle5>=0.0.11; python_version < '3.8'
17
+
18
+ # Jupyter (for training notebooks)
19
+ jupyter>=1.0.0
20
+ notebook>=7.0.0
21
+ ipykernel>=6.25.0
22
+
23
+ # Optional but recommended
24
+ matplotlib>=3.7.0
25
+ seaborn>=0.12.0