Alex Chan commited on
Commit
ffcded7
1 Parent(s): b7fd8e3

added title

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -42,5 +42,9 @@ def run_Inference(input_img):
42
 
43
  return OutImg
44
 
45
- demo = gr.Interface(run_Inference, gr.Image(), "image")
 
 
 
 
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()