Laurits commited on
Commit
1ad3ceb
·
1 Parent(s): fb6c3c2

Corrected file name of example

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ def classify_image(img):
9
 
10
  image = gr.inputs.Image(shape=(224,224))
11
  label = gr.outputs.Label()
12
- examples = ['emma_watson.jpeg', "tom_hanks.jpeg"]
13
 
14
  iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
15
  iface.launch(inline=False)
 
9
 
10
  image = gr.inputs.Image(shape=(224,224))
11
  label = gr.outputs.Label()
12
+ examples = ['emma_watson.jpg', "tom_hanks.jpeg"]
13
 
14
  iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
15
  iface.launch(inline=False)