HangenYuu commited on
Commit
8a62832
·
1 Parent(s): bfb4d20

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -45,5 +45,10 @@ examples = [
45
  ]
46
  iface = gr.Interface(fn=inference,
47
  inputs=gr.Image(type="pil"),
48
- outputs=gr.Label(num_top_classes=5))
 
 
 
 
 
49
  iface.launch()
 
45
  ]
46
  iface = gr.Interface(fn=inference,
47
  inputs=gr.Image(type="pil"),
48
+ outputs=gr.Label(num_top_classes=5),
49
+ title=title,
50
+ description=description,
51
+ article=article,
52
+ examples=examples,
53
+ analytics_enabled=False)
54
  iface.launch()