djsnuggz commited on
Commit
9c980ff
·
1 Parent(s): c6622f8

remove enable queue option

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -14,7 +14,6 @@ label = gr.Label()
14
  examples = ['trump.jpg', 'faketrump.jpg']
15
  title = 'Trump Imposter Detector'
16
  description = 'Use this handy tool to know if you are looking at the real Donald Trump or an imposter!'
17
- enable_queue=True
18
 
19
- intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title=title, description=description, enable_queue=enable_queue)
20
  intf.launch(inline=False, share=True)
 
14
  examples = ['trump.jpg', 'faketrump.jpg']
15
  title = 'Trump Imposter Detector'
16
  description = 'Use this handy tool to know if you are looking at the real Donald Trump or an imposter!'
 
17
 
18
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title=title, description=description)
19
  intf.launch(inline=False, share=True)