ppicazo commited on
Commit
64af1ab
·
verified ·
1 Parent(s): 8a07864

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
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
- 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",
 
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",