taufiqdp commited on
Commit
0053d00
1 Parent(s): a33fd4d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -46,7 +46,7 @@ def predict(img) -> Tuple[Dict, float]:
46
  return pred_dict, pred_time
47
 
48
 
49
- example_paths = list(pathlib.Path('examples').glob("*.jpg"))
50
  example_list = [[str(filepath)] for filepath in random.sample(example_paths, k=5)]
51
 
52
 
 
46
  return pred_dict, pred_time
47
 
48
 
49
+ example_paths = list(pathlib.Path('examples').glob("*/*.jpg"))
50
  example_list = [[str(filepath)] for filepath in random.sample(example_paths, k=5)]
51
 
52