Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -7,10 +7,12 @@ import numpy as np
|
|
| 7 |
# Load the trained model
|
| 8 |
@st.cache_resource
|
| 9 |
def load_model():
|
| 10 |
-
return joblib.load("
|
| 11 |
|
| 12 |
model = load_model()
|
| 13 |
|
|
|
|
|
|
|
| 14 |
# Streamlit UI for Price Prediction
|
| 15 |
st.title("SuperKart Revenue Prediction App")
|
| 16 |
st.write("This tool predicts the sales revenue listing based on the given details.")
|
|
|
|
| 7 |
# Load the trained model
|
| 8 |
@st.cache_resource
|
| 9 |
def load_model():
|
| 10 |
+
return joblib.load("deployment_files/frontend/SuperKart_Model_V1_0.joblib")
|
| 11 |
|
| 12 |
model = load_model()
|
| 13 |
|
| 14 |
+
|
| 15 |
+
|
| 16 |
# Streamlit UI for Price Prediction
|
| 17 |
st.title("SuperKart Revenue Prediction App")
|
| 18 |
st.write("This tool predicts the sales revenue listing based on the given details.")
|