Spaces:
Runtime error
Runtime error
Alex Chan
commited on
Commit
•
ffcded7
1
Parent(s):
b7fd8e3
added title
Browse files
app.py
CHANGED
@@ -42,5 +42,9 @@ def run_Inference(input_img):
|
|
42 |
|
43 |
return OutImg
|
44 |
|
45 |
-
demo = gr.Interface(run_Inference,
|
|
|
|
|
|
|
|
|
46 |
demo.launch()
|
|
|
42 |
|
43 |
return OutImg
|
44 |
|
45 |
+
demo = gr.Interface(run_Inference,
|
46 |
+
gr.Image(),
|
47 |
+
"image",
|
48 |
+
title="PigeonEverywhere",
|
49 |
+
description="Upload a photo of a pigeon, and get 2D keypoint estimation.\nFor more info on how this was done, see:https://arxiv.org/abs/2308.15316 ")
|
50 |
demo.launch()
|