GV05 commited on
Commit
299e3f6
1 Parent(s): 45fd7b6

add description

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -31,6 +31,7 @@ def pool_alarm(raw_image):
31
  input = gr.inputs.Image(type='pil')
32
  output = gr.outputs.Textbox()
33
  examples = ['alarm.jpeg', 'alarm1.jpeg', 'walk.jpeg']
34
- title = "use blip"
35
- description = ""
36
- intf = gr.Interface(fn=pool_alarm, inputs=input, outputs=output, examples=examples).launch()
 
 
31
  input = gr.inputs.Image(type='pil')
32
  output = gr.outputs.Textbox()
33
  examples = ['alarm.jpeg', 'alarm1.jpeg', 'walk.jpeg']
34
+ title = "Pool Alarm"
35
+ description = "Using visual question answering to check if there is someone in the swimming pool"
36
+ intf = gr.Interface(fn=pool_alarm, inputs=input, outputs=output, examples=examples,
37
+ title=title, description=description).launch()