Update app.py
Browse files
app.py
CHANGED
@@ -15,8 +15,10 @@ def gradio_app(image_path):
|
|
15 |
return out_img
|
16 |
|
17 |
|
18 |
-
|
19 |
-
|
|
|
|
|
20 |
|
21 |
examples = glob.glob("images/*.png")
|
22 |
|
@@ -24,6 +26,6 @@ gr.Interface(gradio_app,
|
|
24 |
inputs=[gr.inputs.Image(type="filepath")],
|
25 |
outputs=gr.outputs.Image(type="pil"),
|
26 |
enable_queue=True,
|
27 |
-
title=
|
28 |
-
|
29 |
examples=examples).launch()
|
|
|
15 |
return out_img
|
16 |
|
17 |
|
18 |
+
Title = "Marine Life Identification"
|
19 |
+
description = (
|
20 |
+
""
|
21 |
+
)
|
22 |
|
23 |
examples = glob.glob("images/*.png")
|
24 |
|
|
|
26 |
inputs=[gr.inputs.Image(type="filepath")],
|
27 |
outputs=gr.outputs.Image(type="pil"),
|
28 |
enable_queue=True,
|
29 |
+
title=Title,
|
30 |
+
description=description,
|
31 |
examples=examples).launch()
|