Spaces:
Sleeping
Sleeping
nishantguvvada
commited on
Commit
·
0345d0b
1
Parent(s):
86f5b35
model_prediction
Browse files
app.py
CHANGED
@@ -34,7 +34,7 @@ if file is None:
|
|
34 |
else:
|
35 |
image = Image.open(file)
|
36 |
st.image(image, use_column_width=True)
|
37 |
-
predictions =
|
38 |
st.write(prediction)
|
39 |
print(
|
40 |
"This image most likely belongs to {}."
|
|
|
34 |
else:
|
35 |
image = Image.open(file)
|
36 |
st.image(image, use_column_width=True)
|
37 |
+
predictions = model_prediction(image, model)
|
38 |
st.write(prediction)
|
39 |
print(
|
40 |
"This image most likely belongs to {}."
|