Update requirements.txt
Browse files- requirements.txt +47 -1
requirements.txt
CHANGED
@@ -1 +1,47 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# General libraries
|
2 |
+
numpy==1.24.0
|
3 |
+
pandas==2.1.0
|
4 |
+
scipy==1.11.0
|
5 |
+
matplotlib==3.8.0
|
6 |
+
seaborn==0.12.2
|
7 |
+
scikit-learn==1.2.0
|
8 |
+
statsmodels==0.14.0
|
9 |
+
|
10 |
+
# Deep learning libraries
|
11 |
+
tensorflow==2.13.0
|
12 |
+
torch==2.1.0
|
13 |
+
transformers==4.32.0
|
14 |
+
datasets==2.11.0
|
15 |
+
huggingface_hub==0.25.2
|
16 |
+
pytorch-lightning==2.0.0
|
17 |
+
optuna==3.1.0
|
18 |
+
|
19 |
+
# ML/AI libraries
|
20 |
+
xgboost==1.8.2
|
21 |
+
lightgbm==4.0.0
|
22 |
+
catboost==1.2
|
23 |
+
mlflow==2.7.1
|
24 |
+
fastai==2.7.13
|
25 |
+
|
26 |
+
# Other useful tools
|
27 |
+
jupyterlab==4.0.0
|
28 |
+
notebook==7.0.0
|
29 |
+
gradio==5.9.1
|
30 |
+
streamlit==1.19.0
|
31 |
+
pycaret==2.3.8
|
32 |
+
joblib==1.3.1
|
33 |
+
|
34 |
+
# NLP and Text-related tools
|
35 |
+
nltk==3.8.1
|
36 |
+
spacy==3.7.0
|
37 |
+
textblob==0.17.1
|
38 |
+
bert-serving-client==1.10.0
|
39 |
+
sentence-transformers==2.2.2
|
40 |
+
|
41 |
+
# Visualization libraries
|
42 |
+
plotly==5.15.0
|
43 |
+
bokeh==3.0.2
|
44 |
+
dash==2.15.0
|
45 |
+
|
46 |
+
# Kaggle API
|
47 |
+
kaggle==1.5.13
|