PDG commited on
Commit
5e7db57
·
1 Parent(s): e413f46

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ def classifyCar(im):
61
  #examples = [[example_img.jpg], [example_img2.jpg]] # must be uploaded in repo
62
 
63
  # create interface for model
64
- interface = gr.Interface(classifyCar, inputs='Image', outputs='label', cache_examples=False, title='VW Up or Fiat 500')
65
  interface.launch()
66
 
67
 
 
61
  #examples = [[example_img.jpg], [example_img2.jpg]] # must be uploaded in repo
62
 
63
  # create interface for model
64
+ interface = gr.Interface(classifyCar, inputs='image', outputs='label', cache_examples=False, title='VW Up or Fiat 500')
65
  interface.launch()
66
 
67