Zakia commited on
Commit
263acd8
·
1 Parent(s): 6d7c94b

change return string

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -44,7 +44,7 @@ def predict_amputation(age, gender, race, diabetes_type):
44
 
45
 
46
  input_df = pd.DataFrame([input_dict])
47
- return str("ALLAH " + " " + str(age) + " " + gender + " " + race + diabetes_type)
48
  #return "ALLAH: "+str(predict(model=model, input_df=input_df)) # calls the predict function when 'submit' is clicked
49
 
50
 
 
44
 
45
 
46
  input_df = pd.DataFrame([input_dict])
47
+ return str("ALLAH " + " " + gender + " " + race + diabetes_type)
48
  #return "ALLAH: "+str(predict(model=model, input_df=input_df)) # calls the predict function when 'submit' is clicked
49
 
50