Update app.py
Browse files
app.py
CHANGED
@@ -89,7 +89,7 @@ tab1 = gr.Interface(
|
|
89 |
fn=predict,
|
90 |
inputs=gr.Image(label='Upload an expressway image', type="pil"),
|
91 |
outputs=gr.Image(type="pil"),
|
92 |
-
title='
|
93 |
examples=sample_images
|
94 |
)
|
95 |
|
@@ -103,7 +103,7 @@ tab2 = gr.Interface(
|
|
103 |
)
|
104 |
|
105 |
# Create a Multi Interface with Tabs
|
106 |
-
iface = gr.TabbedInterface([tab1, tab2], title=
|
107 |
|
108 |
# Launch the interface
|
109 |
iface.launch(share=True)
|
|
|
89 |
fn=predict,
|
90 |
inputs=gr.Image(label='Upload an expressway image', type="pil"),
|
91 |
outputs=gr.Image(type="pil"),
|
92 |
+
title='Image Processing',
|
93 |
examples=sample_images
|
94 |
)
|
95 |
|
|
|
103 |
)
|
104 |
|
105 |
# Create a Multi Interface with Tabs
|
106 |
+
iface = gr.TabbedInterface([tab1, tab2], title='Blue and Yellow Taxi detection in live expressway traffic conditions (data.gov.sg)')
|
107 |
|
108 |
# Launch the interface
|
109 |
iface.launch(share=True)
|