Create requirements.txt
Browse files- requirements.txt +29 -0
requirements.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
streamlit>=1.28.0
|
3 |
+
spacy>=3.7.0
|
4 |
+
scikit-learn>=1.3.0
|
5 |
+
pandas>=2.0.0
|
6 |
+
numpy>=1.24.0
|
7 |
+
PyPDF2>=3.0.0
|
8 |
+
plotly>=5.15.0
|
9 |
+
|
10 |
+
# NLP/ML dependencies
|
11 |
+
sentence-transformers>=2.2.0
|
12 |
+
transformers>=4.34.0
|
13 |
+
torch>=2.0.0
|
14 |
+
shap>=0.44.0
|
15 |
+
|
16 |
+
# MLOps tools
|
17 |
+
mlflow>=2.8.0
|
18 |
+
python-dotenv>=1.0.0
|
19 |
+
loguru>=0.7.0
|
20 |
+
|
21 |
+
# AIOPS monitoring
|
22 |
+
psutil>=5.9.0
|
23 |
+
gpustat>=1.0.0
|
24 |
+
|
25 |
+
# Additional utilities
|
26 |
+
python-multipart>=0.0.6
|
27 |
+
tqdm>=4.65.0
|
28 |
+
|
29 |
+
https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.7.0/en_core_web_lg-3.7.0-py3-none-any.whl
|