amosfang commited on
Commit
06f8627
1 Parent(s): efed5cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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='Blue and Yellow Taxi detection in live expressway traffic conditions (data.gov.sg)',
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=["Images", "Video"])
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)