ahmadsy commited on
Commit
fc762e6
·
1 Parent(s): 82ba65a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ file_name = st.file_uploader("Upload a hot dog candidate image")
11
  if file_name is not None:
12
  col1, col2 = st.columns(2)
13
 
14
- image = Image.open(file_name)git add app.py
15
  col1.image(image, use_column_width=True)
16
  predictions = pipeline(image)
17
 
 
11
  if file_name is not None:
12
  col1, col2 = st.columns(2)
13
 
14
+ image = Image.open(file_name)
15
  col1.image(image, use_column_width=True)
16
  predictions = pipeline(image)
17