23A066X commited on
Commit
0510aca
1 Parent(s): f83ceb5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -3,5 +3,10 @@ import gradio as gr
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
 
 
 
 
 
 
6
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
  iface.launch()
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
 
6
+ iface = gr.TabbedInterface([tab1, tab2], title='Cauliflower and Beetroot Detection with ssd_resnet50_v1_fpn_640x640_coco17_tpu-8')
7
+
8
+ # Launch the interface
9
+ iface.launch(share=True)
10
+
11
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
12
  iface.launch()