ikhlasulakmalh commited on
Commit
0ea5a61
·
1 Parent(s): c15ae1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ if st.button("Submit"):
26
 
27
  # Get prediction
28
  prediction = clf.predict(X)[0]
29
- confidence_scores = clf.predict_proba(inputs)[0]
30
 
31
  st.write("Predicted Disease: " + prediction)
32
 
 
26
 
27
  # Get prediction
28
  prediction = clf.predict(X)[0]
29
+ confidence_scores = clf.predict_proba(X)[0]
30
 
31
  st.write("Predicted Disease: " + prediction)
32