Spaces:
Runtime error
Runtime error
cache_examples=False
Browse files
app.py
CHANGED
@@ -43,5 +43,5 @@ label = gr.outputs.Label()
|
|
43 |
examples = ['caterpillar.jpg', 'centipede.jpg', 'millipede.jpg', 'caterpillar-2.jpg']
|
44 |
|
45 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title = title, description = description, article = article,
|
46 |
-
enable_queue=True)
|
47 |
intf.launch()
|
|
|
43 |
examples = ['caterpillar.jpg', 'centipede.jpg', 'millipede.jpg', 'caterpillar-2.jpg']
|
44 |
|
45 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title = title, description = description, article = article,
|
46 |
+
enable_queue=True, cache_examples=False)
|
47 |
intf.launch()
|