Felipe commited on
Commit
738dc2f
·
1 Parent(s): 9f9219a

Fixing file ext

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def classify_image(img):
14
 
15
  image = gr.inputs.Image(shape=(192, 192))
16
  label = gr.outputs.Label()
17
- examples = ['teddy.jpg', 'grizzly.jpg', 'black_bear.jpg']
18
 
19
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
20
  intf.launch(inline=False)
 
14
 
15
  image = gr.inputs.Image(shape=(192, 192))
16
  label = gr.outputs.Label()
17
+ examples = ['teddy.jpg', 'grizzly.png', 'black_bear.jpg']
18
 
19
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
20
  intf.launch(inline=False)