pat229988 commited on
Commit
f763a6b
1 Parent(s): 4f43f76

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -95,7 +95,7 @@ def main():
95
  st.markdown('<p style="text-align: center;"><label>Image : </label></p>',unsafe_allow_html=True)
96
  st.image(image,width=500)
97
  if st.button("Predict"):
98
- x = pred(image)
99
  st.markdown('<p style="text-align: center;"><label>Prediction : </label></p>',unsafe_allow_html=True)
100
  st.image(x,width=900)
101
  st.write('Optic Disease Score',optic)
 
95
  st.markdown('<p style="text-align: center;"><label>Image : </label></p>',unsafe_allow_html=True)
96
  st.image(image,width=500)
97
  if st.button("Predict"):
98
+ x,optic,macula = pred(image)
99
  st.markdown('<p style="text-align: center;"><label>Prediction : </label></p>',unsafe_allow_html=True)
100
  st.image(x,width=900)
101
  st.write('Optic Disease Score',optic)