# Prepare dataset For MOT17 # python3 fast_reid/datasets/generate_mot_patches.py --data_path /data/cvprw/AIC23/dataset --mot 17 # Train re-id # python3 fast_reid/tools/train_net.py --config-file ./fast_reid/configs/MOT17/sbs_S50.yml MODEL.DEVICE "cuda:0" # python3 fast_reid/tools/train_net.py --config-file ./fast_reid/configs/AIC23/sbs_S50.yml MODEL.DEVICE "cuda:0" python fast_reid/tools/train_net.py --config-file ./fast_reid/configs/AIC23/sbs_S101.yml --num-gpus 2 # Tracking # -c : ckpt for detection # ReID # parser.add_argument("--with-reid", dest="with_reid", default=False, action="store_true", help="test mot20.") # parser.add_argument("--fast-reid-config", dest="fast_reid_config", default=r"fast_reid/configs/MOT17/sbs_S50.yml", type=str, help="reid config file path") # parser.add_argument("--fast-reid-weights", dest="fast_reid_weights", default=r"pretrained/mot17_sbs_S50.pth", type=str,help="reid config file path") # parser.add_argument('--proximity_thresh', type=float, default=0.5, help='threshold for rejecting low overlap reid matches') # parser.add_argument('--appearance_thresh', type=float, default=0.25, help='threshold for rejecting low appearance similarity reid matches')