Update app.py
Browse files
app.py
CHANGED
@@ -21,6 +21,7 @@ if file_name is not None:
|
|
21 |
|
22 |
image = Image.open(file_name)
|
23 |
col1.image(image, use_column_width=True)
|
|
|
24 |
predictions = model(image)
|
25 |
|
26 |
col2.header("Probabilities")
|
|
|
21 |
|
22 |
image = Image.open(file_name)
|
23 |
col1.image(image, use_column_width=True)
|
24 |
+
image = extractor(image)
|
25 |
predictions = model(image)
|
26 |
|
27 |
col2.header("Probabilities")
|