Hrishikesh332 commited on
Commit
7984e98
·
1 Parent(s): c470e73

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -29,6 +29,7 @@ img = st.file_uploader("Choose an image", type=["jpg", "jpeg", "png"])
29
  if img is not None:
30
 
31
  data = img.read()
 
32
  output = query(data)
33
  st.write("Predicted Output:", output)
34
 
 
29
  if img is not None:
30
 
31
  data = img.read()
32
+ st.image(data)
33
  output = query(data)
34
  st.write("Predicted Output:", output)
35