PDG commited on
Commit
bbee37c
·
1 Parent(s): 00fbc7c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -88,7 +88,7 @@ def classifyCar(im):
88
  #examples = [[example_img.jpg], [example_img2.jpg]] # must be uploaded in repo
89
 
90
  # create interface for model
91
- interface = gr.Interface(classifyCar, inputs='image', outputs=['image','label'], cache_examples=False, title='VW Up or Fiat 500')
92
  interface.launch()
93
 
94
 
 
88
  #examples = [[example_img.jpg], [example_img2.jpg]] # must be uploaded in repo
89
 
90
  # create interface for model
91
+ interface = gr.Interface(classifyCar, inputs='image', outputs=['label'], cache_examples=False, title='VW Up or Fiat 500')
92
  interface.launch()
93
 
94