saritha5 commited on
Commit
066b8cd
·
1 Parent(s): a7b127f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -17,4 +17,8 @@ def prediction(sales,model):
17
  return "Not outlier"
18
 
19
  sales = st.number_input("Enter the Sales Value")
20
- st.header(prediction(sales,MODEL))
 
 
 
 
 
17
  return "Not outlier"
18
 
19
  sales = st.number_input("Enter the Sales Value")
20
+ def fun():
21
+ st.header(prediction(sales,MODEL))
22
+ if st.button("Predict"):
23
+ fun()
24
+