Spaces:
Build error
Build error
Commit
·
0ea5a61
1
Parent(s):
c15ae1c
Update app.py
Browse files
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(
|
| 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 |
|