Spaces:
Sleeping
Sleeping
remove enable queue option
Browse files
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
|
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)
|