Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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)
|
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 |
|