Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ if file_name is not None:
|
|
12 |
col1, col2 = st.columns(2)
|
13 |
|
14 |
image = Image.open(file_name)
|
15 |
-
col1.image(image,
|
16 |
predictions = pipeline(image)
|
17 |
|
18 |
col2.header("Probabilities")
|
|
|
12 |
col1, col2 = st.columns(2)
|
13 |
|
14 |
image = Image.open(file_name)
|
15 |
+
col1.image(image, use_container_width=True)
|
16 |
predictions = pipeline(image)
|
17 |
|
18 |
col2.header("Probabilities")
|