Update app.py
Browse files
app.py
CHANGED
@@ -7,9 +7,18 @@ def predict(image):
|
|
7 |
predictions = pipeline(image)
|
8 |
return {p["label"]: p["score"] for p in predictions}
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
gr.Interface(
|
11 |
predict,
|
12 |
-
|
|
|
13 |
outputs=gr.Label(num_top_classes=5),
|
14 |
title="Astrophotography Object Classifier",
|
15 |
allow_flagging="manual",
|
|
|
7 |
predictions = pipeline(image)
|
8 |
return {p["label"]: p["score"] for p in predictions}
|
9 |
|
10 |
+
|
11 |
+
def process_image(image):
|
12 |
+
width = 1080
|
13 |
+
ratio = width / image.width
|
14 |
+
height = int(image.height * ratio)
|
15 |
+
resized_image = image.resize((width, height))
|
16 |
+
return resized_image
|
17 |
+
|
18 |
gr.Interface(
|
19 |
predict,
|
20 |
+
fn=process_image,
|
21 |
+
inputs=gr.Image(image_size=(1080, None), type="pil", label="Upload Astrophotography image"),
|
22 |
outputs=gr.Label(num_top_classes=5),
|
23 |
title="Astrophotography Object Classifier",
|
24 |
allow_flagging="manual",
|