Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +24 -0
requirements.txt
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# requirements.txt - v2 (Updated for numpy compatibility)
|
2 |
+
|
3 |
+
# Core UI and data handling
|
4 |
+
gradio==4.31.5
|
5 |
+
pandas==2.2.2
|
6 |
+
openpyxl==3.1.2
|
7 |
+
|
8 |
+
# Time series and ML libraries
|
9 |
+
# Pin numpy to a stable version compatible with pmdarima, prophet, and statsmodels
|
10 |
+
numpy==1.26.4
|
11 |
+
# Pin statsmodels, as it's sensitive to numpy changes
|
12 |
+
statsmodels==0.14.2
|
13 |
+
# Pin pmdarima and its dependency arch
|
14 |
+
pmdarima==2.0.4
|
15 |
+
arch==6.3.0
|
16 |
+
# Pin prophet and its dependencies
|
17 |
+
prophet==1.1.5
|
18 |
+
cmdstanpy==1.2.2
|
19 |
+
|
20 |
+
# Other dependencies
|
21 |
+
scikit-learn==1.4.2
|
22 |
+
joblib==1.4.2
|
23 |
+
matplotlib==3.8.4
|
24 |
+
seaborn==0.13.2
|