kamau1 commited on
Commit
3de3309
1 Parent(s): baa4325

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -15,8 +15,10 @@ def gradio_app(image_path):
15
  return out_img
16
 
17
 
18
- title = "Marine Life Identification"
19
- #description = "----eyes in the sea----"
 
 
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=title,
28
- #description=description,
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()