跳转到内容

MTR++: Multi-Agent Motion Prediction With Symmetric Scene Modeling and Guided Intention Querying

MTR++: Multi-Agent Motion Prediction With Symmetric Scene Modeling and Guided Intention Querying

Section titled “MTR++: Multi-Agent Motion Prediction With Symmetric Scene Modeling and Guided Intention Querying”

⚠️ AI 生成 · 建议对照原文 本页为自动整理的学习笔记;关键数据与引用如需引用,请回查 PDF / 官方版本。

学习档位 中文笔记

类型 文献 · 更新 2026-07-19

所属 行为与运动预测 · 自动驾驶预测、规划与控制

中文学习笔记(自动生成,需核验)

Section titled “中文学习笔记(自动生成,需核验)”

Topic: motion-prediction · Tier: recent · Year: 2024 · Venue:
Evidence level: partial · 本地全文: 是 · 建议阅读: ~40 分钟
Paper: https://arxiv.org/abs/2306.17770
Code:
Generator: grok

该工作提出MTR与MTR++框架,用可学习意图查询(intention queries)结合Transformer编码器-解码器高效处理多模态轨迹预测,摆脱对密集目标候选的依赖;MTR++进一步通过对称场景建模与互导意图查询实现多智能体联合预测,并在WOMD上取得SOTA且连获Waymo挑战赛冠军,对自动驾驶运动预测领域有直接参考价值。

MTR++以对称场景建模与互导意图查询扩展MTR,实现多智能体高效、场景一致的多模态运动预测。

运动预测需在复杂环境与智能体多模态行为下准确预测未来轨迹;现有方法或依赖密集目标候选导致效率问题,或直接回归易产生同质轨迹且对单智能体定制编码导致多智能体预测低效,需同时兼顾多模态覆盖、精度、效率与多智能体交互。

Transformer编码器-解码器与DETR类可学习查询;向量化场景表示(如VectorNet折线);运动预测中的多模态建模(GMM、目标点方法);自动驾驶场景中的地图与历史轨迹编码。

  • 提出MTR框架:在Transformer编码器-解码器中引入可学习意图查询,针对不同运动模态定制查询,实现精确多模态轨迹预测并摆脱密集目标候选依赖。
  • 提出MTR++框架:通过对称场景上下文建模(共享编码+查询中心自注意力)与互导意图查询,支持多智能体同时多模态预测并促进行为交互,生成场景一致轨迹。
  • MTR在WOMD上超越先前无集成方法,mAP提升+8.48%;MTR++进一步提升多智能体预测性能与效率。
  • MTR与MTR++分别获得2022与2023年Waymo Motion Prediction Challenge冠军。

输入为智能体历史轨迹与道路图的向量化折线表示;通过折线编码器生成token特征;采用带局部自注意力的Transformer编码器在以焦点智能体为中心的全局坐标系中建模场景上下文;引入少量空间分布意图点对应的可学习意图查询,经堆叠Transformer解码器层进行全局意图定位与局部运动精炼;输出每查询对应的多模态轨迹(结合GMM建模连续分布);MTR++改为共享上下文编码器(查询中心自注意力)并对多智能体互导查询。

意图查询:少量意图点(文中示例64)的位置嵌入,每查询负责一区域/模态的轨迹预测与迭代精炼,兼顾模态覆盖与效率,避免密集候选;编码器采用局部自注意力以保留局部结构并提升长时预测的内存效率;MTR++对称建模用共享编码器+查询中心自注意力在各智能体局部坐标系中联合编码;互导意图查询使多智能体通过堆叠解码器交互,生成场景一致联合预测。取舍:用模式特定查询替代密集目标或同质直接回归,平衡多模态、精度与计算成本。

主要在Waymo Open Motion Dataset(WOMD)上进行评估与挑战;提及mAP指标及与先前方法的比较;效率方面比较推理延迟与内存占用(随焦点智能体数量变化)。

MTR在WOMD运动预测基准上达到SOTA,较先前无集成方法mAP提升+8.48%;MTR++在多智能体同时预测上性能与效率均优于MTR(尤其智能体数量增多时优势更明显);分别获2022与2023年Waymo Motion Prediction Challenge冠军。其他具体数值待来源核验。

提取中未系统讨论失败场景与适用边界;单焦点定制编码在多智能体时效率低(MTR++已改进);意图点数量与分布需预设;长时/复杂交互的边界情况待来源核验。

与前序 / 同期 / 后续方法的关系

Section titled “与前序 / 同期 / 后续方法的关系”

场景编码:采用VectorNet风格向量折线,但用局部连接图上的Transformer编码器替代全局图或栅格化CNN/LaneGCN;多模态:对比目标基方法(DenseTNT等密集候选)、直接回归(同质轨迹问题)、GMM/热图/采样,用少量意图查询覆盖模态;多智能体:对比SceneTransformer(场景中心但依赖全局坐标系)、M2I(影响者-反应者序列模型),MTR++用统一模型+互导查询支持更多智能体交互;受DETR/DAB-DETR可学习查询与迭代精炼启发。

提取中未提及官方代码或开源信息,待来源核验。复现建议基于文中描述:向量化输入、局部注意力编码器、意图点生成与查询、堆叠解码器精炼及GMM输出。

先读摘要与引言(问题与贡献);再读相关工作定位差异;然后第3节MTR方法(编码器、意图查询解码器、优化);接着MTR++对称建模与互导查询扩展;最后实验结果与图1效率/性能比较。

  1. Q: MTR意图查询如何减少对密集目标候选的依赖? A: 每个意图查询对应一个意图点(少量如64),负责特定区域/模态的轨迹预测与精炼,用分类概率定位意图并用迭代解码器精炼,从而覆盖多模态而无需密集候选。
  2. Q: MTR的两个关键过程是什么? A: 全局意图定位(大致识别智能体意图以提升效率)与局部运动精炼(自适应精炼每意图的预测轨迹以提升精度)。
  3. Q: MTR++相对MTR的主要扩展是什么? A: 对称场景上下文建模(共享编码器+查询中心自注意力)与互导意图查询模块,支持多智能体同时预测并促进未来行为交互,生成场景一致轨迹,且效率随智能体数增加更优。
  4. Q: 为什么采用局部自注意力而非全局图? A: 更好地保留输入局部结构,并提升内存效率,支持更大地图编码用于长时运动预测。
  5. Q: 框架输出如何建模多模态连续分布? A: 结合意图查询与GMM,在每个时间步建模智能体多模态未来行为的连续分布,可生成任意指定轨迹的发生概率。
  • page 1 Abstract: The initial MTR framework utilizes a transformer encoder-decoder structure with learnable intention queries, enabling efficient and accurate prediction of future trajectories. … Moreover, we introduce an advanced MTR++ framework, extending the capability of MTR to simultaneously predict multimodal motion for multiple agents. MTR++ incorporates symmetric context modeling and mutually-guided intention querying modules…
  • page 1-2 Introduction: By customizing intention queries for distinct motion modalities, MTR improves multimodal motion prediction while reducing reliance on dense goal candidates. The framework comprises two essential processes: global intention localization… and local movement refinement…
  • page 2 Contributions: Our contributions are four-fold: (1) We introduce the MTR frameworks… (2) We propose the advanced MTR++ framework… (3) The initial MTR framework achieves state-of-the-art performance on the motion prediction benchmark of Waymo Open Motion Dataset (WOMD) [15], surpassing previous ensemble-free approaches with a remarkable mAP gain of +8.48%. … (4) Notably, our initial MTR and MTR++ frameworks won the championship of the highly-competitive Waymo Motion Prediction Challenge in 2022 [57] and 2023 [57], respectively…
  • page 3 Related Work / Method intro: In our MTR frameworks, we also adopt this vector representation. However, instead of constructing a global graph of polylines, we advocate employing a transformer encoder on a locally connected graph.
  • page 4 Fig. 2 / Method: Finally, a small set of learnable intention queries are integrated into the stacked transformer decoder layers to aggregate information from the encoded context features. Each intention query is responsible for predicting future trajectories towards a specific intention point…
  • topic: ad-prediction-planning-control
  • sources: openalex
  • retrieved_at: 2026-07-20
  • query: motion prediction transformer autonomous driving
  • doi: 10.1109/tpami.2024.3352811
  • score_total: 61
  • suggested_tier: recent

(no prose relevance explanation — numeric score only or HTTP source)

(no snippet evidence in candidate pool)

生成:2026-07-21 · 来源条数 2 · 模型 heuristic · 需人工核验数字

围绕「MTR++: Multi-Agent Motion Prediction With Symmetric Scene Modeling and Guided Intention Querying」的核心问题与动机(待结合全文核验)。

  • 见原文方法章节;以下为基于摘要/摘录的要点提示。
  • JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2015 1 …

与相近工作的关系待核验;请对照 related work。

  • 勿仅凭摘要推断未给出的数值指标。
  1. 这篇工作的输入/输出表示是什么?(MTR++: Multi-Agent Motion Prediction With Symmetric Scene Modeling and Guided Intention Querying)
  2. 训练目标与评测协议各是什么?
  3. 主要失败模式或局限是什么?
flowchart LR
A["输入 / 观测"] --> B["表示 / 编码"]
B --> C["推理 / 解码"]
C --> D["输出 / 动作或检测"]
%% method sketch for: MTR++: Multi-Agent Motion Prediction With Symmetric Scene Modeling and Guided In

方法结构示意(重绘;细节以原论文为准,待 PDF 核验)。

MTR++: Multi-Agent Motion Prediction With Symmetric Scene Modeling and Guided Intention Querying arch p.1

来源:原论文约 p.1(arch);学习用途摘录。

MTR++: Multi-Agent Motion Prediction With Symmetric Scene Modeling and Guided Intention Querying qualitative p.5

来源:原论文约 p.5(qualitative);学习用途摘录。

展开英文 Paper Card / AI deep analysis
Field Content
Year 2024
Authors Shaoshuai Shi, Li Jiang, Dengxin Dai, Bernt Schiele
arXiv 2306.17770
DOI 10.1109/tpami.2024.3352811
Topics motion-prediction, ad-prediction-planning-control
Paper https://arxiv.org/abs/2306.17770
展开 Extract / Selections / Local assets
  • motion-prediction: tier=recent rank=1 score=67 — MTR++ multi-agent motion prediction with symmetric scene modeling
  • ad-prediction-planning-control: tier=foundational rank=2 score=61 — auto refresh 2026-07-19 sources=openalex | promoted watch->foundational for coverage fill
JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2015 1
MTR++: Multi-Agent Motion Prediction with
Symmetric Scene Modeling and Guided Intention
Querying
Shaoshuai Shi∗ , Li Jiang∗† , Dengxin Dai, and Bernt Schiele, Fellow, IEEE
Abstract—Motion prediction is crucial for autonomous driving systems to understand complex driving scenarios and make informed
decisions. However, this task is challenging due to the diverse behaviors of traffic participants and complex environmental contexts. In this
paper, we propose Motion TRansformer (MTR) frameworks to address these challenges. The initial MTR framework utilizes a transformer
arXiv:2306.17770v2 [cs.CV] 9 Mar 2024
encoder-decoder structure with learnable intention queries, enabling efficient and accurate prediction of future trajectories. By
customizing intention queries for distinct motion modalities, MTR improves multimodal motion prediction while reducing reliance on dense
goal candidates. The framework comprises two essential processes: global intention localization, identifying the agent’s intent to enhance
overall efficiency, and local movement refinement, adaptively refining predicted trajectories for improved accuracy. Moreover, we introduce
an advanced MTR++ framework, extending the capability of MTR to simultaneously predict multimodal motion for multiple agents. MTR++
incorporates symmetric context modeling and mutually-guided intention querying modules to facilitate future behavior interaction among
multiple agents, resulting in scene-compliant future trajectories. Extensive experimental results demonstrate that the MTR framework
achieves state-of-the-art performa