Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ if st.button("Predict Sales"):
|
|
36 |
user_input = np.array([[item_weight, item_visibility, item_mrp]])
|
37 |
predicted_sales = model.predict(user_input)[0]
|
38 |
|
39 |
-
st.success(f"📈 Predicted Sales for '{
|
40 |
|
41 |
# Sidebar
|
42 |
st.sidebar.title("📌 About")
|
|
|
36 |
user_input = np.array([[item_weight, item_visibility, item_mrp]])
|
37 |
predicted_sales = model.predict(user_input)[0]
|
38 |
|
39 |
+
st.success(f"📈 Predicted Sales for '{product_name}': ₹{predicted_sales:,.2f}")
|
40 |
|
41 |
# Sidebar
|
42 |
st.sidebar.title("📌 About")
|