Spaces:
Runtime error
Runtime error
add description
Browse files
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 = "
|
35 |
-
description = ""
|
36 |
-
intf = gr.Interface(fn=pool_alarm, inputs=input, outputs=output, examples=examples
|
|
|
|
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()
|