Spaces:
Sleeping
Sleeping
changing requirements names
Browse files- requirements-local.txt +20 -0
- requirements.txt +4 -21
requirements-local.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Feature store and model registry
|
2 |
+
hopsworks
|
3 |
+
|
4 |
+
# Resolve city names from (longitude, latitude) coordinates
|
5 |
+
geopy==2.4.1
|
6 |
+
|
7 |
+
# Read weather data. Unpinned version - if we don't update, we won't get the weather data
|
8 |
+
openmeteo-requests
|
9 |
+
|
10 |
+
# Be more efficient when making REST (Http) requests
|
11 |
+
requests-cache==1.2.0
|
12 |
+
retry-requests==2.0.0
|
13 |
+
|
14 |
+
# ML framework libraries
|
15 |
+
xgboost==2.0.3
|
16 |
+
scikit-learn==1.4.1.post1
|
17 |
+
|
18 |
+
# Plot charts
|
19 |
+
matplotlib==3.8.3
|
20 |
+
|
requirements.txt
CHANGED
@@ -1,21 +1,4 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
geopy==2.4.1
|
6 |
-
|
7 |
-
# Read weather data. Unpinned version - if we don't update, we won't get the weather data
|
8 |
-
openmeteo-requests
|
9 |
-
|
10 |
-
# Be more efficient when making REST (Http) requests
|
11 |
-
requests-cache==1.2.0
|
12 |
-
retry-requests==2.0.0
|
13 |
-
|
14 |
-
# ML framework libraries
|
15 |
-
xgboost==2.0.3
|
16 |
-
scikit-learn==1.4.1.post1
|
17 |
-
|
18 |
-
# Plot charts
|
19 |
-
matplotlib==3.8.3
|
20 |
-
|
21 |
-
python-dotenv
|
|
|
1 |
+
gradio-datetimerange
|
2 |
+
gradio
|
3 |
+
pandas
|
4 |
+
hopsworks
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|