Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -74,5 +74,5 @@ else:
|
|
74 |
predicted_label,variance_score = blurr_predict(file)
|
75 |
#st.header(predicted_label)
|
76 |
#st.header(str(round(variance_score,2)))
|
77 |
-
string = "The image is,"
|
78 |
st.success(string)
|
|
|
74 |
predicted_label,variance_score = blurr_predict(file)
|
75 |
#st.header(predicted_label)
|
76 |
#st.header(str(round(variance_score,2)))
|
77 |
+
string = "The image is," + str(predicted_label) + " with the score value of " + str(round(variance_score,2))
|
78 |
st.success(string)
|