kevinconka commited on
Commit
3eb4992
Β·
1 Parent(s): 7fa7461

Added tab title

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,7 +19,7 @@ from model_yolov5 import load_model, inference
19
 
20
 
21
  TITLE = """
22
- <h1> 🌊 SEA.AI's Machine Vision Showcase ✨ </h1>
23
  <p align="center">
24
  Ahoy! Explore our object detection technology!
25
  Upload a maritime scene image and click <code>Submit</code>
@@ -53,7 +53,7 @@ flagged_counter = FlaggedCounter(dataset_name)
53
 
54
 
55
  theme = gr.themes.Default(primary_hue=gr.themes.colors.indigo)
56
- with gr.Blocks(theme=theme, css=css) as demo:
57
  badges = gr.HTML(load_badges(flagged_counter.count()))
58
  title = gr.HTML(TITLE)
59
 
 
19
 
20
 
21
  TITLE = """
22
+ <h1> 🌊 SEA.AI's Machine Vision Demo ✨ </h1>
23
  <p align="center">
24
  Ahoy! Explore our object detection technology!
25
  Upload a maritime scene image and click <code>Submit</code>
 
53
 
54
 
55
  theme = gr.themes.Default(primary_hue=gr.themes.colors.indigo)
56
+ with gr.Blocks(theme=theme, css=css, title="SEA.AI Vision Demo") as demo:
57
  badges = gr.HTML(load_badges(flagged_counter.count()))
58
  title = gr.HTML(TITLE)
59