Edvard Høiby commited on
Commit
a1ee6ba
1 Parent(s): f18fd65

fix image paths

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def classify_image(img):
17
 
18
  image = gr.inputs.Image(shape=(192, 192))
19
  label = gr.outputs.Label()
20
- examples = ['dog.jpeg', 'cat.jpeg', 'dunno.webp']
21
 
22
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
23
  intf.launch(inline=False)
 
17
 
18
  image = gr.inputs.Image(shape=(192, 192))
19
  label = gr.outputs.Label()
20
+ examples = ['dog.webp', 'cat.jpeg', 'both.jpeg']
21
 
22
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
23
  intf.launch(inline=False)