agatam commited on
Commit
d2d1ded
·
1 Parent(s): 9b68c02

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,6 +24,6 @@ label = gr.outputs.Label()
24
  examples = ['dog.jpg', 'dog2.jpg', 'test3.jpg', 'test4.jpg', 'test5.jpg']
25
 
26
 
27
- intf = gr.Interface(f=classify_image, inputs=image, outputs=label, examples=examples)
28
  intf.launch(inline=False)
29
 
 
24
  examples = ['dog.jpg', 'dog2.jpg', 'test3.jpg', 'test4.jpg', 'test5.jpg']
25
 
26
 
27
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
28
  intf.launch(inline=False)
29