Jimmie commited on
Commit
6f4261b
1 Parent(s): cce074e

cache_examples=False

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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()