pavanipriyanka commited on
Commit
cb1f15f
·
verified ·
1 Parent(s): ef8862b

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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("/content/deployment_files/frontend/SuperKart_Model_V1_0.joblib")
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.")