jableable commited on
Commit
0993ad1
1 Parent(s): a3b1bd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -11,9 +11,8 @@ uploaded_img = st.file_uploader("Upload your file here...",type=['png', 'jpeg',
11
  if uploaded_file is not None:
12
  st.image(uploaded_file)
13
  array = np.array(uploaded_img)
14
- result = loaded_model.predict(array)
15
-
16
- st.write(f"Your prediction is: {result}")
17
 
18
 
19
  #model = from_pretrained_keras("jableable/road_model")
 
11
  if uploaded_file is not None:
12
  st.image(uploaded_file)
13
  array = np.array(uploaded_img)
14
+ result = loaded_model.predict(array)
15
+ st.write(f"Your prediction is: {result}")
 
16
 
17
 
18
  #model = from_pretrained_keras("jableable/road_model")