Benjamin Coman commited on
Commit
8943dde
1 Parent(s): 75899a9

fix spelling

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,5 +15,5 @@ image = gr.inputs.Image(shape=(192,192))
15
  label = gr.outputs.Label()
16
  examples = [ 'dog.jpg', 'cat.jpg' ]
17
 
18
- iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, exmaples=exmaples)
19
  iface.launch(inline=False)
 
15
  label = gr.outputs.Label()
16
  examples = [ 'dog.jpg', 'cat.jpg' ]
17
 
18
+ iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
19
  iface.launch(inline=False)