Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- app.py +1 -0
- requirements.txt +1 -0
app.py
CHANGED
|
@@ -2,6 +2,7 @@ import streamlit as st
|
|
| 2 |
import pandas as pd
|
| 3 |
import joblib
|
| 4 |
import numpy as np
|
|
|
|
| 5 |
|
| 6 |
# UI Title and Subtitle
|
| 7 |
st.title("🛒 SuperKart Sales Forecasting App")
|
|
|
|
| 2 |
import pandas as pd
|
| 3 |
import joblib
|
| 4 |
import numpy as np
|
| 5 |
+
import requests
|
| 6 |
|
| 7 |
# UI Title and Subtitle
|
| 8 |
st.title("🛒 SuperKart Sales Forecasting App")
|
requirements.txt
CHANGED
|
@@ -4,3 +4,4 @@ scikit-learn==1.6.1
|
|
| 4 |
xgboost==2.1.4
|
| 5 |
joblib==1.4.2
|
| 6 |
streamlit==1.43.2
|
|
|
|
|
|
| 4 |
xgboost==2.1.4
|
| 5 |
joblib==1.4.2
|
| 6 |
streamlit==1.43.2
|
| 7 |
+
requests==2.28.1
|