Vinther commited on
Commit
ceaf560
1 Parent(s): f415771

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -24,7 +24,12 @@ image = gr.Image()
24
  label = gr.Label()
25
 
26
  # Upload your own images and link them
27
- examples = ['basset.jpg', 'cat01.jpg', 'cat02.png', 'hound.png']
 
 
 
 
 
28
 
29
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
30
  intf.launch()
 
24
  label = gr.Label()
25
 
26
  # Upload your own images and link them
27
+ examples = [
28
+ ['basset.jpg'],
29
+ ['cat01.jpg'],
30
+ ['cat02.png'],
31
+ ['hound.png']
32
+ ]
33
 
34
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
35
  intf.launch()