Hrishikesh332 commited on
Commit
6d8e22b
·
1 Parent(s): 114a31b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -36,8 +36,9 @@ img = st.file_uploader("Choose an image", type=["jpg", "jpeg", "png"])
36
 
37
  if img is not None:
38
  # image = Image.open(BytesIO(img.read()))
39
- output = query(img)
40
- st.write("Predicted Output:", Output)
 
41
 
42
 
43
 
 
36
 
37
  if img is not None:
38
  # image = Image.open(BytesIO(img.read()))
39
+ image = process_file(img)
40
+ output = query(image)
41
+ st.write("Predicted Output:", output)
42
 
43
 
44