corvo7 commited on
Commit
ce7029a
·
verified ·
1 Parent(s): afacd2d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ model=pickle.load(open('model','rb'))
21
 
22
  if st.button("Submit"):
23
  answers=model.predict(pre_proce.transform(inputss))[0]
24
- if answers==0
25
  st.write("the person didnt survived")
26
  else:
27
  st.write("the person survived")
 
21
 
22
  if st.button("Submit"):
23
  answers=model.predict(pre_proce.transform(inputss))[0]
24
+ if answers==0:
25
  st.write("the person didnt survived")
26
  else:
27
  st.write("the person survived")