Skip to content

Commit

Permalink
fix #291, #292
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhiyuan Chen authored May 12, 2020
1 parent 7835f64 commit edb1adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main():
trackers = glob(os.path.join(args.tracker_path,
args.dataset,
args.tracker_prefix+'*'))
trackers = [x.split('/')[-1] for x in trackers]
trackers = [os.path.basename(x) for x in trackers]

assert len(trackers) > 0
args.num = min(args.num, len(trackers))
Expand Down

0 comments on commit edb1adb

Please sign in to comment.