Myrax3000 commited on
Commit
64aa225
·
1 Parent(s): 95d0304

Fix examples

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,7 +11,7 @@ def classify_image(photo):
11
 
12
  image = gr.inputs.Image(shape=(192,192))
13
  label = gr.outputs.Label()
14
- exemples = ['king.jpg', 'yugi.jpg', 'pikachu.jpg']
15
 
16
- iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, exemples=exemples)
17
  iface.launch()
 
11
 
12
  image = gr.inputs.Image(shape=(192,192))
13
  label = gr.outputs.Label()
14
+ examples = ['king.jpg', 'yugi.jpg', 'pikachu.jpg']
15
 
16
+ iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, exemples=examples)
17
  iface.launch()