Papers › YesTrack: Referring Multi-Object Tracking via MLLM-based Yes/No Verification

YesTrack: Referring Multi-Object Tracking via MLLM-based Yes/No Verification

2 Sep 2026arXiv:2609.02318added by Syntology

Quansheng Hu, Qin Sun, Qiansen Dai, Jin Ding, Wan Zhang, Xue Zhou, Jianxiao Zou

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Referring multi-object tracking (RMOT) aims to track every instance in a video that matches a given language expression. Despite the recent integration of multimodal large language models (MLLMs) to enhance generalization, existing methods predominantly relegate them to the role of caption generators, necessitating external modules for final decision-making. This paradigm not only introduces extra latency but also severely underutilizes the inherent vision-language alignment capabilities of MLLMs. To address these limitations, we propose YesTrack, a novel two-stage RMOT method that reformulates referring as a discriminative task, directly leveraging MLLMs for Yes/No verification without explicit text generation. To further enhance the reliability and efficiency of this MLLM-based verification, we introduce two lightweight temporal consistency constraints: Temporal Confidence Prior (TCP) and Temporal Reference Propagation (TRP). We further validate the generality of this discriminative paradigm by proposing YesTrack-MOT, a straightforward yet highly effective instantiation for generic multi-object tracking (MOT). Experiments on Refer-KITTI and Refer-KITTI-V2 show that YesTrack significantly outperforms existing state-of-the-art methods while maintaining high efficiency, even when implemented with the smallest variant of Qwen3-VL. Code is released at https://github.com/ggbondrighthere24/YesTrack.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2609.02318")

Code

Syntology Ran 0 of 22 code samples harvested from 1 repository linked to this paper; 22 have no recorded run.

By repository: found in paper text by Syntology: 22 samples from 1 repository, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

ggbondrighthere24/YesTrack found in paper text by SyntologyMIT report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

22 samples harvested; 0 ran; 0 honoured the contract we drafted; 22 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

22unverified

Licence: 0 of the 22 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from ggbondrighthere24/YesTrack. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

box_cxcywh_to_xywh ggbondrighthere24/YesTrack/utils/box_ops.py found in paper text by Syntology unverified MIT (permissive) · a073b7d2a2d6c2d9 · report
box_cxcywh_to_xyxy ggbondrighthere24/YesTrack/utils/box_ops.py found in paper text by Syntology unverified MIT (permissive) · 08b30db38a23e292 · report
box_xyxy_to_cxcywh ggbondrighthere24/YesTrack/utils/box_ops.py found in paper text by Syntology unverified MIT (permissive) · 22fb5f58739f0544 · report
build_and_forward_yes_probs ggbondrighthere24/YesTrack/refer_llm/infer_utils.py found in paper text by Syntology unverified MIT (permissive) · 6cf2102c579b2b62 · report
build_model_and_processor_for_eval ggbondrighthere24/YesTrack/refer_llm/llm_eval.py found in paper text by Syntology unverified MIT (permissive) · d893ceff75502135 · report
collect_refer_results ggbondrighthere24/YesTrack/eval_refer_kitti_mot.py found in paper text by Syntology unverified MIT (permissive) · 2afaf6b2fb65d3f7 · report
crop_with_margin ggbondrighthere24/YesTrack/refer_llm/crop_utils.py found in paper text by Syntology unverified MIT (permissive) · 6a89dbd0efb1bd9e · report
gather_results ggbondrighthere24/YesTrack/refer_llm/llm_eval.py found in paper text by Syntology unverified MIT (permissive) · 4cfa53ade4f9d2ef · report
geometric_mean ggbondrighthere24/YesTrack/TrackEval/trackeval/plotting.py found in paper text by Syntology unverified MIT (permissive) · 06d2be4ac9d0e95b · report
get_yes_no_token_ids ggbondrighthere24/YesTrack/refer_llm/llm_eval.py found in paper text by Syntology unverified MIT (permissive) · 79b5fd49fe521aff · report
inverse_sigmoid ggbondrighthere24/YesTrack/utils/misc.py found in paper text by Syntology unverified MIT (permissive) · b4c4991a4f855b9d · report
jaccard ggbondrighthere24/YesTrack/TrackEval/trackeval/plotting.py found in paper text by Syntology unverified MIT (permissive) · 00c662d6d9709fe4 · report
labels_to_one_hot ggbondrighthere24/YesTrack/utils/misc.py found in paper text by Syntology unverified MIT (permissive) · 719b009d108eed44 · report
load_multiple_tracker_summaries ggbondrighthere24/YesTrack/TrackEval/trackeval/plotting.py found in paper text by Syntology unverified MIT (permissive) · e9f7b2829ca9731b · report
nested_tensor_from_tensor_list ggbondrighthere24/YesTrack/utils/nested_tensor.py found in paper text by Syntology unverified MIT (permissive) · 50736ecf379fe65b · report
nested_tensor_index_select ggbondrighthere24/YesTrack/utils/nested_tensor.py found in paper text by Syntology unverified MIT (permissive) · 0fc1d557d788dff2 · report
parse_args ggbondrighthere24/YesTrack/refer_llm/llm_train.py found in paper text by Syntology unverified MIT (permissive) · 5428601869acbac9 · report
read_seqmap ggbondrighthere24/YesTrack/eval_refer_kitti_mot.py found in paper text by Syntology unverified MIT (permissive) · 5e228854127e22df · report
read_summary_metrics ggbondrighthere24/YesTrack/eval_refer_kitti_mot.py found in paper text by Syntology unverified MIT (permissive) · 809127f63637158b · report
time ggbondrighthere24/YesTrack/TrackEval/trackeval/_timing.py found in paper text by Syntology unverified MIT (permissive) · df1bd31f4da1bed6 · report
xywh_to_xyxy_with_margin ggbondrighthere24/YesTrack/refer_llm/crop_utils.py found in paper text by Syntology unverified MIT (permissive) · dd925c0cd213ab92 · report
yaml_to_dict ggbondrighthere24/YesTrack/utils/misc.py found in paper text by Syntology unverified MIT (permissive) · 409166545e2474cf · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2609.02318, was issued in September 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections