GovindMalhotra commited on
Commit
e16be06
·
1 Parent(s): c7f3283

fixed typo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -38,5 +38,5 @@ image = gr.Image()
38
  label = gr.Label()
39
  examples = ['lion_f.png', 'lion_r.png', 'potato_f.jpg']
40
 
41
- intf = gr.interface(fn=classify_image, inputs=image, output = label, examples = examples)
42
  intf.launch(inline=False)
 
38
  label = gr.Label()
39
  examples = ['lion_f.png', 'lion_r.png', 'potato_f.jpg']
40
 
41
+ intf = gr.Interface(fn=classify_image, inputs=image, output = label, examples = examples)
42
  intf.launch(inline=False)