Type-to-Track: Retrieve Any Object via Prompt-based Tracking

One of the recent trends in vision problems is to use natural language captions to describe the objects of interest. This approach can overcome some limitations of traditional methods that rely on bounding boxes or category annotations. This paper introduces a novel paradigm for Multiple Object Tracking called Type-to-Track, which allows users to track objects in videos by typing natural language descriptions. We present a new dataset for that Grounded Multiple Object Tracking task, called GroOT, that contains videos with various types of objects and their corresponding textual captions describing their appearance and action in detail. Additionally, we introduce two new evaluation protocols and formulate evaluation metrics specifically for this task. We develop a new efficient method that models a transformer-based eMbed-ENcoDE-extRact framework (MENDER) using the third-order tensor decomposition. The experiments in five scenarios show that our MENDER approach outperforms another two-stage design in terms of accuracy and efficiency, up to 14.7% accuracy and 4$\times$ speed faster.

Paper

Similar papers

Peer review

Reviewer j89C5/10 · confidence 5/52023-07-03

Summary

This paper provides a new paradigm for MOT, using natural language descriptions to track objects of interest in videos. To accomplish it, the authors collected and annotated various object and scene descriptions. Meanwhile, the new evaluation protocols are also formulated following the evaluation of the original MOT. The authors also provide a new method, showing good performance in experiments.

Strengths

* This work has an intuitive and good motivation to solve MOT using natural language. * This paper is well organized, which contains collecting new benchmarks, designing effective methods, and conducting experiments. * More importantly, the authors provide many visualization results, which are interesting.

Weaknesses

* First of all, the main idea of ‘Type-to-Track’ has a similar idea to Referring Multi-Object Tracking [1] (released at Arxiv2023.03, accepted at CVPR2023), which both use language description to prompt multiple objects. It is important to discuss and compare the related work. * I’m curious about the annotation details of the descriptions. Are they manually annotated? Or they are annotated by the current techniques of GPT? * In Table 3, does the number of words represent the number of descriptions? Or the words are words of descriptions? * The evaluation of caption prompts confuses me. The crucial words of created captions have one-to-one object matching with the grounded objects. So each object is evaluated individually? * This paper is not easy to follow and sometimes overclaimed on some details, e.g., third-order tensor modeling (using three inputs), and correlation simplification (using separate attention). Besides, the authors define many new concepts but lack details and explanations, e.g., the single-stage end-to-end framework. How to deal with new entrance or exit objects? * How about the visualization performance of the proposed method? [1] Referring Multi-Object Tracking, CVPR2023.

Questions

See the weakness section.

Rating

5: Borderline accept: Technically solid paper where reasons to accept outweigh reasons to reject, e.g., limited evaluation. Please use sparingly.

Confidence

5: You are absolutely certain about your assessment. You are very familiar with the related work and checked the math/other details carefully.

Soundness

3 good

Presentation

3 good

Contribution

3 good

Limitations

The authors have already provided the limitations in the paper.

Reviewer RiBQ6/10 · confidence 4/52023-07-04

Summary

This paper systematically tackles the prompt-based multiple object tracking problem by (1) introducing a dataset for the Grounding Multiple Object Tracking Task (GroOT), (2) introducing a new tacking paradigm (type to track), and (3) developing a new language-based multiple object tracking model (MENDER).

Strengths

This paper systematically tackles the prompt-based multiple object tracking problem with a variety of relevant contributions. We list the strengths of the paper below, expanding each paragraph with comments on the relevance of each contribution. ## A new tracking paradigm (type to track) This paper introduces the type to track paradigm, which consists in prompting models with text descriptions and obtaining all the tracklets corresponding to it. This paradigm is of great practical importance, as it allows users to query videos with text prompts to retrieve the desired objects. ## A dataset for the Grounding Multiple Object Tracking Task (GroOT) This paper introduces GroOT, a dataset which extends MOT17 and TAO with a variety of text captions to learn models suitable for the type to track task. GroOT supports 5 settings, including tracking by : - category name - category synonyms - category definition - retrieval prompts: 3 retrieval prompts per video are provided. the prompts are sequential and each prompt could refer to multiple tracklets at the same time (one-to-many). - tracklet captions: one caption here corresponds to one tracklet, where the caption consistently describes the object throughout the tracklet. In the TAO subset, the caption describes the object appearance. In the MOT17 subset, 2 types of captions are provided for each object, one describing the action and the other the appearance. ## Class-agnostic evaluation metrics To evaluate the type to track performance on GroOT, this paper introduces CA-MOTA and CA-IDF1, two class-agnostic tracking metrics. ## A new language-based multiple object tracking model (MENDER) The authors also introduce MENDER, a proof-of-concept tracker capable of retrieving tracklets based on text prompts. MENDER is composed of an image encoder, a text encoder, and a transformer decoder. The **image encoder** encodes in parallel the image at time $t$ and the cropped bounding boxes for tracked instances at $t-1$. The **text encoder** is a RoBERTa encoder that encodes the text prompts. Cross-attention between image features, track embeddings and text embeddings produces the inputs to the transformer decoder, which is trained with a GIoU loss to detect the objects based on the track and text queries. The proposed model is simple enough and addresses the type to track task effectively.

Weaknesses

## Missing baselines The `category_name` setting could be tackled by any multiple object tracking algorithm. The current version of the paper lacks an absolute estimate of the tracking performance of MENDER in comparison to state-of-the-art tracking algorithms. It is possible that the current design produces suboptimal tracking performance, and only empirical results can show whether this is true or not. The paper would thus benefit from a comparison of MENDER to SOTA tracking-by-detection methods on the `category_name` setting. ## Class-agnostic evaluation metrics **Evaluation of retrieval performance.** The proposed metrics focus more on evaluating the tracking performance of retrieved tracklets rather than the retrieval performance itself. Although the limitations section already indicates this as a limitation, I find this to be a weakness since a benchmark for tracking retrieval should specifically provide suitable metrics for the evaluation of such task. **CA-HOTA.** Although MOTA and IDF1 are established tracking metrics, the community has reached an agreement that they cannot solely represent the performance of a tracker. The HOTA metrics (DetA, AssA, and HOTA) disentangle different components of the tracking pipeline and it would be beneficial for the proposed benchmark to also introduce a class-agnostic version of such metrics. ## Missing ablation on the tokenizer and the text encoder The authors adopt the RoBERTa tokenizer and text encoder. However, they do not provide an explanation for choosing it over other popular architectures, e.g. CLIP. The paper would benefit from a comparison to other text encoder architectures and initializations.

Questions

I find the paper well-written and relevant to the community. However, the weaknesses listed above somewhat hinder the contributions of this paper. In my opinion: 1. a comparison on the `category_name` setting to SOTA tracking-by-detection methods on GroOT is essential for this paper 2. retrieval-specific metrics would complement the contribution of the dataset, which as of now does not allow directly assessing the retrieval task performance 3. the paper would benefit from ablations on the tokenizer choice. I would consider increasing my rating and supporting this paper if my current concerns are addressed, in particular points 1 and 2.

Rating

6: Weak Accept: Technically solid, moderate-to-high impact paper, with no major concerns with respect to evaluation, resources, reproducibility, ethical considerations.

Confidence

4: You are confident in your assessment, but not absolutely certain. It is unlikely, but not impossible, that you did not understand some parts of the submission or that you are unfamiliar with some pieces of related work.

Soundness

3 good

Presentation

4 excellent

Contribution

3 good

Limitations

The authors have adequately pointed out limitations of their work.

Reviewer 9rR37/10 · confidence 4/52023-07-06

Summary

This paper delves into language-grounded multi-object tracking, a highly important task that has been underexplored due to the lack of suitable datasets. Firstly, the authors propose a novel dataset that extends existing Multiple Object Tracking (MOT) datasets with additional captions describing appearance or action of each tracklet, as well as retrieval prompts describing main content of a scene. To evaluate language-grounded multi-object tracking, the authors consider five scenarios with different types of text input (prompts) and suggest class-agnostic MOTA and IDF1 that decouple the classification accuracy. Also, the authors introduce MENDER, an efficient single-stage model that autoregressively tracks objects relevant to the prompt. The effectiveness of this model is validated through a comparison with a two-stage baseline model consisting of MDETR and TrackFormer.

Strengths

* This paper addresses a significant problem, aiming to retrieve multiple objects relevant to an input prompt from a video. This setting is novel compared to existing spatio-temporal video grounding methods (e.g., TubeDETR[1]), which are limited to retrieving only a single object. The proposed task can not only serve as a user-friendly video analysis application but also work as a video perception foundation model for fine-grained video understanding. * The proposed dataset is significant to further research on video-language model. * The proposed diverse scenarios for evaluating grounded MOT are interesting and valid. [1] A. Yang, et al., TubeDETR: Spatio-Temporal Video Grounding with Transformers

Weaknesses

## Inconsistent annotations * In the released dataset, some inconsistent annotations are observed. How quality assurance is achieved in the manual annotation process? Is there criteria to accept or reject the captions from the annotator? * In Sec 3.1, L116 states that the appearance-related caption and action-related caption are provided in order if the tracked object is person. However, in the annotations, the captions are randomly ordered. For example, in mot17_train file, object whose instance_id is 170 has captions of ["person walking on sidewalk", "person wearing black jacket"], where action-related caption is the first in the caption list. * Also, object whose instance_id is 9 has three captions: ["a person sitting on a bench", "child in stroller", "baby stroller"]. And, in TAO dataset, there are some instances with six captions. What is the reaons of such variance in caption annotations? * I would rather suggest to have separate field for appearance described caption and action described caption. ## Heavy dependence on TAO dataset * MOT Challenge datasets include more challenging tracking cases caused by complex motion and occlusion, compared to TAO dataset. However, its scale is very small (e.g., only 7 videos for training). * I think captioning other human-centric MOT datasets with complex motion would improve the importance of the dataset. For example, human-centric datasets with dense FPS video (e.g., DanceTrack[2] and HiEve[3]) are the possible candidates. ## Unclear evaluation metrics * In the paper, I cannot find the details of matching GT-prediction pairs which are necessary to compute FN and FP. * What is the reason of cls exists in Eq. 1 even though we are not considering class of tracklets? Isn't that the class of tracklet do not exist in the case of grounded MOT? ## Lack of experimental details * Unclear details about implementing the two-stage baseline model which is based on the MDETR and TrackFormer. TrackFormer jointly performs object detection and tracking, but how MDETR is integrated into TrackFormer to achieve grounded object detection? [2] P. Sun, et al., DanceTrack: Multi-Object Tracking in Uniform Appearance and Diverse Motion, CVPR 2022 [3] W. Lin, et al., Human in events: A large-scale benchmark for humancentric video analysis in complex events, arxiv 2020.05

Questions

Major concerns are raised in the weakness section. Here are some minor questions: * Why only text prompt for every frame exists, but there is no prompt-tracklet paired annotations in the MOT files? * In Table 3, dataset statistics for MOT17 videos are not correct. As far as I know, there are 7 unique videos for the training and test subsets, respectively. Also, your released dataset seems using the GT tracklets from the unique videos. * How do you have the mot17_test annotation file? Is the tracklet obtained from GT or just prediction value? * TAO dataset is the most important one as the proposed dataset is built on top of this one, but why it is not included in Table 1? * Why do you design the MENDER as online tracking model that runs autoregressively, instead of predicting multiple spatio-temporal tubes at once? * In Table 4 and 5, is mAP the absolute value or percentage value? * In Table 4, some bolded values are not the best in the metric.

Rating

7: Accept: Technically solid paper, with high impact on at least one sub-area, or moderate-to-high impact on more than one areas, with good-to-excellent evaluation, resources, reproducibility, and no unaddressed ethical considerations.

Confidence

4: You are confident in your assessment, but not absolutely certain. It is unlikely, but not impossible, that you did not understand some parts of the submission or that you are unfamiliar with some pieces of related work.

Soundness

3 good

Presentation

3 good

Contribution

4 excellent

Limitations

The limitations and future works are well addressed.

Reviewer h9ub7/10 · confidence 4/52023-07-06

Summary

The paper introduces a novel task and dataset that involves tracking multiple objects in videos using language prompts. It proposes two evaluation protocols: retrieval prompts, where the prompts can change during the tracking process, and caption prompts, which remain consistent. The paper also presents class-agnostic evaluation metrics by modifying MOTA and IDF1. Additionally, a novel framework called MENDER is introduced to address the grounded MOT task.

Strengths

1. The significance of the proposed task and dataset is well-defined, as existing tracking datasets using language prompts have been focused on single-object tracking (SOT) tasks. 2. The evaluation protocol for the proposed dataset consists of five distinct protocols, each with clear explanations of their purpose. This dataset stands out from previous tracking datasets due to its diverse range of prompts. 3. The proposed MENDER framework demonstrates efficient and effective performance in addressing the grounded MOT task. 4. The paper is overall well-written and easy to follow.

Weaknesses

1. Referring video segmentation datasets like Ref-YTVOS and Ref-DAVIS are also related to this grounded MOT task since they also aim at tracking a referred target in a video. I think these datasets should also be mentioned in the paper as a comparison benchmark. 2. Moreover, I think Refer-KITTI [1] could also be discussed in the paper as it also utilizes referring expressions for multi-object tracking. 3. The experimental comparisons in the newly proposed dataset are limited. It would be beneficial to include additional methods such as TransRMOT [1] and popular MOT baselines like ByteTrack [2] for a more comprehensive evaluation of the dataset's performance. Adding these comparisons would provide stronger validation for the dataset. [1] Referring Multi-Object Tracking, https://arxiv.org/pdf/2303.03366.pdf [2] ByteTrack: Multi-object tracking by associating every detection box, ECCV 2022

Questions

As discussed in the weaknesses, I hope the authors would supplement some dataset comparisons and experimental validations.

Rating

7: Accept: Technically solid paper, with high impact on at least one sub-area, or moderate-to-high impact on more than one areas, with good-to-excellent evaluation, resources, reproducibility, and no unaddressed ethical considerations.

Confidence

4: You are confident in your assessment, but not absolutely certain. It is unlikely, but not impossible, that you did not understand some parts of the submission or that you are unfamiliar with some pieces of related work.

Soundness

3 good

Presentation

3 good

Contribution

3 good

Limitations

Yes, the authors have adequately addressed the limitations of their work.

Reviewer HDeT5/10 · confidence 4/52023-07-06

Summary

The authors have created a new dataset by combining existing Tracking datasets and adding language prompt annotations. They also proposed a method by extending and modifying MDETR and Trackformer.

Strengths

1. The dataset quality looks sound, diverse, and sufficiently large enough to train Deep networks. 2. The dataset is well documented and the task is clearly defined. 3. The proposed solution is simple and should be easy to extend by new researchers.

Weaknesses

1. The authors claim that Type-to-Track is a novel paradigm. This is incorrect as there exists Datasets, e.g., Refer-Youtube-VOS, Ref-DAVIS, Ref-KITTI, having the same challenge. 2. The related work in incomplete. The authors fail to compare their proposed dataset with existing datasets from Video Instance Segmentation(VIS) literature. Note that, MOTS and VIS are the same task with different nomenclature. 3. The modeling part is unnecessarily written in a complicated way. It is a simple extension of DETR architecture to model the specific solution. Instead of complicating the method with notation, The authors should try to simplify the method section. 4. There are too many evaluation metrics. There are 5 different sub-categories of the same task with separate evaluations on the 3 base datasets. So there are in total, around 12*6=72 different evaluation metrics.

Questions

1. How is this dataset different from Refer-Youtube-VOS, Ref-DAVIS, and Ref-KITTI? 2. How did you evaluate MOT17 and MOT20 datasets? The test ground truth is not public for these datasets. What is MOT17 subset in Tab. 4 and 5? 3. Why is there no unifying evaluation metric. The authors report evaluation separately on all the different datasets they worked on. A new dataset needs to be either compatible with previous ones, or propose a new metric. Without a single metric, new line of researchers would find it difficult to adapt the dataset. 4. How many human hours was needed to annotate the dataset?

Rating

5: Borderline accept: Technically solid paper where reasons to accept outweigh reasons to reject, e.g., limited evaluation. Please use sparingly.

Confidence

4: You are confident in your assessment, but not absolutely certain. It is unlikely, but not impossible, that you did not understand some parts of the submission or that you are unfamiliar with some pieces of related work.

Soundness

3 good

Presentation

2 fair

Contribution

3 good

Limitations

yes

Reviewer RiBQ2023-08-13

Poor dataset quality

I thank the authors for the rebuttal, and for addressing some of my concerns. I was originally positive towards this submission, I think that the community will greatly benefit from an MOT dataset with carefully-curated language captions and from a method to solve the type-to-track problem. After a more careful inspection of the dataset, I have however changed my mind. My main concerns are that: (i) the quality of the annotations is extremely poor; (ii) the annotation policy is inconsistent; (iii) the authors claim to have hired a team of ten professional annotators, but the quality of the captions seem to point out that a visual-language model was used for captioning; (iv) the proposed tracking algorithm trained on GroOT performs significantly worse than industry standards such as ByteTrack. - **Underwhelming performance of MENDER.** Regarding (iv), refer to the authors reply A26. While I appreciate that they disclosed the performance of MENDER, it also shows that the proposed algorithm is not particularly effective. - **Lack of retrieval metrics.** I believe that a paper introducing a new task (type-to-track) and a new dataset (GroOT) should provide metrics to evaluate the effectiveness of a given method at solving the type-to-track task. Since type-to-track is a retrieval task, I find it hard to accept a paper that does not introduce metrics to evaluate the retrieval performance. - **Poor quality of annotations.** I will here report some examples based on the supplementary video shared by the authors themselves. 1. _Timestamp 1:50._ inconsistent annotations in the same frame. 1.a) Three very similar bikes are described as "bicycle", "a black bike", "two black wheels on a bike". First of all, all bikes are black. I wonder how one could evaluate type-to-track performance (i.e. retrieval) if descriptions do not follow a common pattern. Second, "two black wheels on a bike" is an odd description and is the first example that reminds of captions from visual-language models. 1.b) "A man riding a bicycle", "a man wearing a helmet", "a person in a pink turban". They are all riding a bicycle, and all should be retrieved by the prompt a man riding a bicycle. Yet, proper retrieval metrics would penalize retrieval of "a man wearing a helmet" and "a person in a pink turban" when using such a prompt. Using well-defined patterns such as "a man riding a bicycle and wearing a helmet" and "a person riding a bicycle in a pink turban" would assist the evaluation of type-to-track methods. 2. _Timestamp 1:58._ Object ID 5274 was annotated as "the headlight of a car". I wonder how a human annotator could come up with this kind of description for what is seemingly a black car. 3. _Timestamp 2:13._ The authors say that in MOT they provide two distinct set of captions, i.e. appearance captions and action captions. However, the annotations shown here are really confusing and inconsistent. In the same frame, appearance captions sometime represent actions, e.g. some objects are labeled as "a man walking in a store", "woman walking on a sidewalk", "woman walking down the sidewalk" and others like "a man wearing a black shirt", "a little girl in a green shirt and white pants", "a man wearing a white hat". 4. _Timestamp 2:25._ The "man talking on a cell phone" is actually just touching his chin. Overall, my greatest concern is the **underwhelming quality of the annotations**. A by-product of the poor quality of the annotations is that it is really hard to evaluate the performance of the type-to-track task. In my opinion, a dataset designed for a task should provide all the tools to evaluate such task, while these annotations make it impossible. While there is no right way to annotate visual-language datasets, this dataset does not seem to be going in the right direction. In my opinion, the dataset would need significant further refinement before getting published. However, I am waiting to hear the opinion of other reviewers and keep my mind open to different opinions.

Authorsrebuttal2023-08-14

Response to Reviewer RiBQ's comments

We thank Reviewer **RiBQ** for the constructive comments. Allow us to clarify the points you mentioned: - Quality of annotations: We thank the comment from Reviewer **RiBQ**, but **the annotation in the new proposed dataset remains at a high label accuracy**. Indeed, in the mentioned supplementary video, a total of 186 tracklets were showcased. After taking into account the two incorrect annotations that Reviewer RiBQ mentioned (ID 5274 and an ambiguous tracklet "man talking on a cell phone"), **the accurate annotation ratio remains at a high 98.9%** (184 out of 186). Note that the annotations demonstrated in the submitted video are from version v0.6 (refer to **A13**). These specific instances have already been rectified in the new version v1.0 release. - Appearance captions and action captions: To simplify visualization, we only showed either appearance or action captions type randomly as explained in Fig. 4's caption in the Supplementary PDF file. - Inconsistent annotations in the same frame: These bikes are not included to be retrieved. We would like to emphasize that these variations, present an opportunity to examine the robustness and adaptability of the proposed type-to-track approach. - Well-defined patterns: We appreciate your suggestion regarding the retrieval evaluation pattern. Given that the annotations represent **tracklet captions** that convey the essence of the tracklet, these captions remain accurate in terms of their visual meaning. - Underwhelming performance of MENDER: Please note that the proposed MENDER is **designed to address a new angle of visual-language MOT tracking problem** (as mentioned in L34-35 in the main paper) and is **NOT aimed to achieve the top rankings on the general MOT leaderboard**. The suggestion from the reviewer RiBQ is **NOT a fair comparison** since it is just to check the absolute bar. ByteTrack is a two-stage framework that utilizes an efficient single-category design in its separate object detector. In contrast, our design is a joint-detection-and-tracking framework agnostic to the category and for flexible textual input. - Lack of retrieval metrics: Type-to-track is **NOT solely a retrieval task**. As originally stated in the main paper L22-23 and L35-36, **the main and focused task is the new problem of prompt-based tracking**. The retrieval setting is an extension and the retrieval metric capturing the retrieval performance aspects is planned as our future iterations, as mentioned in the limitations section of our paper.

Reviewer 9rR32023-08-14

Additional comment on the dataset quality

I also have a concern regarding the quality of captions in the dataset. As I mentioned in my review, is it valid to argue that this dataset contains "textual captions describing their appearance and action in detail" (L8)? In the annotations (the version available to the public now is v0.2), the captions are still not in order (appearance -> action) resulting in confusion about the type of captions whether it describes appearance or action. Also, the analysis of the diversity of captions is absent, for example, how many unique words are used for describing appearance or actions. Furthermore, in the MOT17 dataset, 20~30% of captions are sentences related to 'a person walking on the sidewalk' which is not informative compared to the original MOT annotations which already annotate the type of object, such as a walking pedestrian or standing person. I expect more fine-grained captions if they are annotated by professional annotators.

Reviewer RiBQ2023-08-14

- Quality of annotations: I thank the authors for their reply, but I remain skeptical about the quality of the annotations. As reviewer 9rR3 pointed out, only v0.2 is available to the public as of 2023-08-14. We can only judge the dataset based on the current available version, and accepting a dataset paper with the promise that the dataset will be improved is a big bet. - Underwhelming performance of MENDER: The authors state that the comparison to ByteTrack is not fair. Even assuming that it isn't, MENDER loosely follows the design of MOTR. However, MOTR achieves considerably higher performance on MOT17, i.e. 65.0 vs. 74.5 MOTA 53.9 vs. 57.8 HOTA. What is this performance drop due to? - Lack of retrieval metrics: The authors themselves state that "[The variations in captions for the same type of object] present an opportunity to examine the robustness and adaptability of the proposed type-to-track approach.". However, I would argue that they may be helpful for training such models, but not "robustness and adaptability of the proposed type-to-track approach". The current class-agnostic metrics are not really helpful to evaluate the type-to-track task, and without a way to evaluate it, this dataset is useful only for training. The fact that the authors report the lack of retrieval metrics as a limitation in their paper does not discount from the fact that these metrics are necessary in this paper to evaluate the performance of the proposed task.

Authorsrebuttal2023-08-15

We sincerely appreciate the insightful feedback provided by the reviewers. Your inputs on various aspects, including the retrieval metrics and the quality of annotations, are invaluable. We are committed to incorporating these suggestions into the final version of our work to enhance its overall quality and impact.

Authorsrebuttal2023-08-17

Release of version v1.0 of the MOT17

We would like to extend our sincere gratitude for your invaluable efforts and insightful comments, which have helped improve our annotation quality. We are pleased to announce the release of version v1.0 of the MOT17 annotations. We welcome any further suggestions you may have, as we always strive to improve our annotations' quality. Here are the notable updates: - The annotation format adheres to our initial commitment. The `captions` field now includes the first caption for appearance and the second for action. Any missing captions have been filled with a `None` value. - Given that MOT17 videos dominantly feature crowded scenes with moving people, it is expected that most of the action captions pertain to walking and standing actions. We have endeavored to enhance diversity by introducing other actions like sitting, pulling, pushing, wandering, talking, etc. Furthermore, we have introduced specific actions like "using phone while walking" to enrich the range of captions. Please combine with the test annotations to comprehensively understand the diversity present. - The long-tailed distribution effect is less observed in appearance captions, adding to the overall balance and detail (L8). - Approximately 4.5% of total instances have no caption, while around 12.7% have only one caption associated with them due to the low visibility at a distance and instances of high occlusion. - The physical characteristics of a person or their personal accessories, such as their **clothing**, **bag color**, and **hair color** are considered to be part of their appearance. Therefore, the appearance captions include verbs carrying or holding to describe personal accessories. These changes will make the MOT17 annotations more comprehensive and informative, and we are grateful for your continued feedback.

Authorsrebuttal2023-08-20

Release training annotation of the TAO dataset

Dear reviewers, We deeply appreciate your constructive comments during the discussion. We are pleased to announce that ALL training annotations of version v1.0 have been released, including the MOT17 and TAO annotations. We welcome any further suggestions you may have, as we always strive to improve our annotations' quality. Here are the notable updates on TAO annotations: - Our annotation contains 948 unique words and 2591 unique sentences. - In terms of the well-defined pattern suggested by Reviewer RiBQ, we organize the captions as follows: - Appearance caption of a highly visible object: a `[color]` `[subject]` in `[position]` - Appearance caption of a highly visible person: `["person"/"man"/"woman"]` `["wearing"/"carrying"/"in"]` `[color/pattern]` `[clothes]`. - Action caption of a highly visible person: `[subject]` `[verb]` in `[position/context]`. We sincerely appreciate your continuous engagement and dedication to improving our work. Regards, Authors

Reviewer RiBQ2023-08-13

I thank the authors for their reply and for having addressed some of my concerns. I recommend including the performance comparison of MENDER to other trackers in the main paper, and work on improving its absolute tracking performance. Additional comments on the dataset quality can be found in my reply to the general rebuttal. I will keep an open mind, but after careful inspection I have become very concerned by the quality of the annotations.

Authorsrebuttal2023-08-18

Dear Reviewer **RiBQ**, We appreciate your invaluable efforts and insightful comments, which have helped improve our annotation quality. We have updated the MOT17 dataset to address your annotation concern. We would like to hear your feedback. Please feel free to suggest if you have other feedback. Best regards, Authors

Reviewer h9ub2023-08-14

About the comparison with other approaches in catogory_name setting

I would like to express my appreciation to the authors for providing a rebuttal and for addressing some of my concerns. However, my concern about the comparison with other baselines is not fully resolved. As suggested in A26, the performance of MENDER on `category_name` setting is far behind the SOTA tracker TrackFormer and ByteTrack. It is understandable that ByteTrack's superior performance could be achieved from their task-specific design for associations. However, it is hard to find reasons why MENDER's performance falls short compared to TrackFormer, which is essentially a simple extension of Deformable DETR. Considering that MENDER benefits from additional training with more language descriptions, one would naturally expect it to gain advantages from the increased annotations. Rather, the result in A26 rather gives an impression that the proposed method suffers from generalizing to a more standard `category_name` setting.

Authorsrebuttal2023-08-14

A reminder on the fair comparison

We would like to remind Reviewer **h9ub** that compared to Trackformer, MENDER only demonstrates a **marginal decrease in identity assignment** (67.1 vs 68.0 IDF1 and 53.9 vs 57.3 HOTA). The distinction in the MOTA detection metric stems from our detector's design, which is a Grounded detector integrating prompts as an additional input. Fair comparisons with the two-stage Trackformer were already provided in the main paper on four other settings. Below is an additional comparison of the `category_name` setting: |Method |MOTA |IDF1 |HOTA |mAP | |-----------------|--------|-------|-------|--------| |TrackFormer |64.7 |65.8 |56.9 |0.793 | |MENDER |67.0 |71.2 |61.4 |0.876 |

Reviewer h9ub2023-08-21

Thanks for your response. Although the absolute performance of MENDER falls short of other SOTA MOT models, its role as an example baseline for grounded MOT is somewhat sufficient. Furthermore, I've carefully gone through other reviewers' opinions about the dataset quality and think the problem has been sufficiently addressed in the final version of the dataset. Overall, I think this dataset could positively impact the MOT community for grounded object reasoning. Thus I'd like to keep my original rating and vote for accepting the paper. But I recommend the authors to keep working on improving the absolute performance of MENDER.

Reviewer 9rR32023-08-14

Regarding the Response

## Overall response Thank you for clarifying my concerns. I agree that the proposed dataset is significant at this stage for researching multi-modal MOT and the proposed task is also interesting. However, the current version of the dataset (only v0.2 is available to the public on 2023-08-14) is not yet satisfying and I would like to keep my score. ## Remaining concern about annotations Please note that as the v0.2 dataset is only available at this moment, my review is based on that. ### About captions describing the human action The captions are restricted to describing the appearance of an object or person, instead of action. In the MOT17 train set, there are only 14 words related to verb - filtered by NLTK - ['carrying', 'crossing', 'eating', 'holding', 'is', 'parked', 'pushing', 'riding', 'sitting', 'standing', 'striped', 'talking', 'walking', 'wearing']. Among these words, only some words are related to describing the actions of a person. Based on this observation, I cannot agree with your contribution point (L8) "textual captions describing their **appearance and action** in detail" which was appealing to me. ### Limited diversity of captions In MOT17 train set, among 175540 captions, there are 294 unique captions and its distribution is severely long-tailed, where top-5 frequent captions occupy 22.6%. Even such top-5 frequent captions contain the same meaning (1, 2, 4) and their description is not informative as well. I guess this is caused by the characteristics of the MOT17 dataset which focuses on the scene including pedestrians. However, I believe this would be handled effectively by carefully annotating the captions (e.g., describing the fine-grained appearance) or separately annotating the captions about appearance and action (e.g., walking or standing). 1. 'a person walking on the sidewalk' 2. 'person walking on the sidewalk' 3. 'person standing on sidewalk' 4. 'person walking on sidewalk' 5. 'person wearing black shirt'

Authorsrebuttal2023-08-18

Dear Reviewer **9rR3**, We appreciate your invaluable efforts and insightful comments, which have helped improve our annotation quality. We have updated the MOT17 dataset to address your annotation concern. We would like to hear your feedback. Please feel free to suggest if you have other feedback. Best regards, Authors

Reviewer 9rR32023-08-18

My concern is well addressed in the v1.0 MOT17 dataset and I am willing to raise my score. It would be great to include the analysis of captions that are mentioned before, such as frequency/distribution of words - verb (action) / noun (type of object) / adjective (attribute of object) - used in the captions. I hope to see the updated version of the TAO dataset soon.

Authorsrebuttal2023-08-22

Dear Reviewer **9rR3**, We deeply appreciate your constructive comments, your engagement during the discussion, and your support. We have released ALL training annotations of version v1.0, including the MOT17 and TAO annotations. Best regards, Authors

Reviewer j89C2023-08-20

Official Review by Reviewer j89C

Overall, the rebuttal from the author side solves most of my concerns. So I decide to keep my original rating for it. I would encourage the authors to conduct a comparison&discussion with RMOT in the revised version, since RMOT (developed in the last year) should be much earlier than this work. Moreover, I notice that other reviewers mentioned about the quality of annotation. I would also suggest the authors to address since it is really a big bet for this work.

Authorsrebuttal2023-08-20

Dear Reviewer **j89C**, We deeply appreciate your constructive comments. We already had the RMOT's dataset (Ref-KITTI) in comparison in Table 1 in the rebuttal PDF file. We also added the discussion in the main text accordingly. We will try to add the performance comparison. We have released ALL training annotations of version v1.0, including the MOT17 and TAO annotations. We welcome any further suggestions you may have, as we always strive to enhance our work's quality and impact. Best regards, Authors

Reviewer HDeT2023-08-22

Thank you for your response. As many reviewers raised concerns about the dataset quality, I took a closer look. It has inconsistent and other issues as raised by other reviewers. Also, I feel that the overall complex presentation of the method and various matrices are somewhat confusing. Thus I will keep my rating.

Program Chairsdecision2023-09-21

Decision

Accept (poster)

© 2026 NYSGPT2525 LLC