Spaces:
Sleeping
Sleeping
Update fmcg_genai/requirements.txt
Browse files- fmcg_genai/requirements.txt +33 -43
fmcg_genai/requirements.txt
CHANGED
|
@@ -1,43 +1,33 @@
|
|
| 1 |
-
# Core
|
| 2 |
-
|
| 3 |
-
numpy>=1.24.0
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
joblib>=1.3.0
|
| 35 |
-
# pickle5>=0.0.12 # Commented out due to compatibility issues
|
| 36 |
-
|
| 37 |
-
# Optional: MLOps
|
| 38 |
-
# mlflow>=2.5.0
|
| 39 |
-
# docker>=6.1.0
|
| 40 |
-
|
| 41 |
-
# Development
|
| 42 |
-
jupyter>=1.0.0
|
| 43 |
-
ipykernel>=6.25.0
|
|
|
|
| 1 |
+
# Core Dependencies (Install First)
|
| 2 |
+
joblib>=1.3.0
|
| 3 |
+
numpy>=1.24.0
|
| 4 |
+
pandas>=2.0.0
|
| 5 |
+
|
| 6 |
+
# ML and Data Science
|
| 7 |
+
scikit-learn>=1.3.0
|
| 8 |
+
xgboost>=1.7.0
|
| 9 |
+
prophet>=1.1.0
|
| 10 |
+
|
| 11 |
+
# Visualization and Explainability
|
| 12 |
+
matplotlib>=3.7.0
|
| 13 |
+
seaborn>=0.12.0
|
| 14 |
+
plotly>=5.15.0
|
| 15 |
+
shap>=0.42.0
|
| 16 |
+
|
| 17 |
+
# Dashboard
|
| 18 |
+
streamlit>=1.25.0
|
| 19 |
+
|
| 20 |
+
# Data Processing
|
| 21 |
+
pyyaml>=6.0
|
| 22 |
+
python-dateutil>=2.8.0
|
| 23 |
+
holidays>=0.25
|
| 24 |
+
tqdm>=4.65.0
|
| 25 |
+
|
| 26 |
+
# Generative AI and RAG
|
| 27 |
+
torch>=2.0.0
|
| 28 |
+
transformers>=4.30.0
|
| 29 |
+
sentence-transformers>=2.2.0
|
| 30 |
+
accelerate>=0.20.0
|
| 31 |
+
langchain>=0.0.300
|
| 32 |
+
langchain-community>=0.0.10
|
| 33 |
+
faiss-cpu>=1.7.4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|