taufiqdp commited on
Commit
f3dc754
1 Parent(s): cb4d50f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -46,8 +46,8 @@ 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=6)]
51
 
52
 
53
  title = 'Birds Species Classifier 🐦'
 
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
 
53
  title = 'Birds Species Classifier 🐦'