shriarul5273 commited on
Commit
d1337c1
1 Parent(s): 7769fc4

cache example off

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -53,5 +53,5 @@ description = "Kenyan Food Classification"
53
 
54
  examples = ['1.jpg','2.jpg','3.jpg','4.jpg']
55
 
56
- gr.Interface(inference, gr.Image(type="pil"), "label", server_name="0.0.0.0",title=title,
57
- description=description, examples=examples).launch()
 
53
 
54
  examples = ['1.jpg','2.jpg','3.jpg','4.jpg']
55
 
56
+ gr.Interface(inference, gr.Image(label="Input Image",type="pil"), "label", title=title,
57
+ description=description, examples=examples,cache_examples=False).launch(enable_queue=True)