bytetrack_yolox_x_8xb4-amp-80e_crowdhuman-mot17halftrain_test-mot17test.py 523 B

1234567891011121314151617
  1. _base_ = [
  2. './bytetrack/bytetrack_yolox_x_8xb4-amp-80e_crowdhuman-'
  3. 'mot17halftrain_test-mot17halfval.py'
  4. ]
  5. test_dataloader = dict(
  6. dataset=dict(
  7. data_root='data/MOT17/',
  8. ann_file='annotations/test_cocoformat.json',
  9. data_prefix=dict(img_path='test')))
  10. test_evaluator = dict(
  11. type='MOTChallengeMetrics',
  12. postprocess_tracklet_cfg=[
  13. dict(type='InterpolateTracklets', min_num_frames=5, max_num_frames=20)
  14. ],
  15. format_only=True,
  16. outfile_prefix='./mot_17_test_res')