Update app.py
Browse files
app.py
CHANGED
@@ -9,8 +9,8 @@ def predict(image):
|
|
9 |
|
10 |
gr.Interface(
|
11 |
predict,
|
12 |
-
inputs=gr.
|
13 |
-
outputs=gr.
|
14 |
title="Astrophotography Object Classifier",
|
15 |
allow_flagging="manual"
|
16 |
).launch()
|
|
|
9 |
|
10 |
gr.Interface(
|
11 |
predict,
|
12 |
+
inputs=gr.Image(shape=(1080, None), type="pil", label="Upload Astrophotography image"),
|
13 |
+
outputs=gr.Label(num_top_classes=5),
|
14 |
title="Astrophotography Object Classifier",
|
15 |
allow_flagging="manual"
|
16 |
).launch()
|