Spaces:
Running
Running
Commit
Β·
3eb4992
1
Parent(s):
7fa7461
Added tab title
Browse files
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
|
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 |
|