fconti commited on
Commit
4ba9a18
1 Parent(s): 89134e3

Fix: fixing app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -22,6 +22,10 @@ examples = [r'examples/panettone_01.jpg',
22
  r'examples/pandoro_02.jpg'
23
  ]
24
 
 
25
 
26
- demo = gr.Interface(fn=predict, inputs="image", outputs="label", examples=examples)
 
 
 
27
  demo.launch()
 
22
  r'examples/pandoro_02.jpg'
23
  ]
24
 
25
+ title = "Panettone or Pandoro?"
26
 
27
+ demo = gr.Interface(fn=predict, inputs="image",
28
+ outputs="label",
29
+ examples=examples,
30
+ title = title )
31
  demo.launch()