jeffaudi commited on
Commit
1811a2f
·
verified ·
1 Parent(s): 5738e29

Do not cache examples.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -108,7 +108,7 @@ with demo:
108
  inputs = [input_image, threshold],
109
  outputs = [output_image, dimensions, detections, stopwatch],
110
  fn=predict_image,
111
- #cache_examples=True,
112
  label='Try these images!'
113
  )
114
 
 
108
  inputs = [input_image, threshold],
109
  outputs = [output_image, dimensions, detections, stopwatch],
110
  fn=predict_image,
111
+ cache_examples=False,
112
  label='Try these images!'
113
  )
114