From Guesswork to Ground Truth: Making Traffic Forecasts Physically Feasible

2025/08/25 02:36

:::info Authors:

(1) Laura Zheng, Department of Computer Science, University of Maryland at College Park, MD, U.S.A (lyzheng@umd.edu);

(2) Sanghyun Son, Department of Computer Science, University of Maryland at College Park, MD, U.S.A (shh1295@umd.edu);

(3) Jing Liang, Department of Computer Science, University of Maryland at College Park, MD, U.S.A (jingl@umd.edu);

(4) Xijun Wang, Department of Computer Science, University of Maryland at College Park, MD, U.S.A (xijun@umd.edu);

(5) Brian Clipp, Kitware (brian.clipp@kitware.com);

(6) Ming C. Lin, Department of Computer Science, University of Maryland at College Park, MD, U.S.A (lin@umd.edu).

:::

Abstract and I. Introduction

II. Related Work

III. Kinematics of Traffic Agents

IV. Methodology

V. Results

VI. Discussion and Conclusion, and References

VII. Appendix

\ Abstract— In trajectory forecasting tasks for traffic, future output trajectories can be computed by advancing the ego vehicle’s state with predicted actions according to a kinematics model. By unrolling predicted trajectories via time integration and models of kinematic dynamics, predicted trajectories should not only be kinematically feasible but also relate uncertainty from one timestep to the next. While current works in probabilistic prediction do incorporate kinematic priors for mean trajectory prediction, variance is often left as a learnable parameter, despite uncertainty in one time step being inextricably tied to uncertainty in the previous time step. In this paper, we show simple and differentiable analytical approximations describing the relationship between variance at one timestep and that at the next with the kinematic bicycle model. In our results, we find that encoding the relationship between variance across timesteps works especially well in unoptimal settings, such as with small or noisy datasets. We observe up to a 50% performance boost in partial dataset settings and up to an 8% performance boost in large-scale learning compared to previous kinematic prediction methods on SOTA trajectory forecasting architectures out-of-the-box, with no fine-tuning.

\

I. INTRODUCTION

Motion forecasting in traffic involves predicting the next several seconds of movement for select actors in a scene, given the context of historical trajectories and the local environment. There are several different approaches to motion forecasting in deep learning, but one thing is in common— scaling resources, dataset sizes, and model sizes will always help generalization capabilities. However, the difficult part of motion forecasting is not necessarily how the vehicles move, but rather, figuring out the why, as there is always a human (at least, for now) behind the steering wheel.

\ As model sizes become bigger and performance increases, so does the complexity of learning the basics of vehicle dynamics, where, most of the time, vehicles travel in relatively straight lines behind the vehicle leading directly in front. Since training a deep neural network is costly, it is beneficial for both resource consumption and model generalization to incorporate the use of existing dynamics models in the training process, combining existing knowledge with powerful modern architectures. With embedded priors describing the relationships between variables across time, perhaps a network’s modeling power can be better allocated to understanding the why’s of human behavior, rather than the how’s.

\ Fig. 1: Motivating example for probabilistic kinematic priors. In real-world traffic, vehicles have a constrained range of behaviors. For instance, it is not possible for a vehicle to move side to side directly, and driving in reverse is highly unlikely. Without kinematic priors, neural networks may search the space of all trajectories, possible or impossible. Without accounting for analytical variances in trajectories as in previous work, the range of possible future trajectories may also be unrealistic.

\ Kinematic models have already been widely used in various autonomous driving tasks, especially trajectory forecasting and simulation tasks [1], [2], [3], [4]. These models explicitly describe how changes in the input parameters influence the output of the dynamical system. Typically, kinematic input parameters are often provided by either the robot policy as an action, or by a human in direct interaction with the robot, e.g. steering, throttle, and brake for driving a vehicle. For tasks modeling decision-making, such as trajectory forecasting of traffic agents, modeling the input parameters may be more descriptive and interpretable than modeling the output directly. Moreover, kinematic models relate the input actions directly to the output observation; thus, any output of the kinematic model should, at the very least, be physically feasible in the real world [1].

\ While previous works already use kinematic models to provide feasible output trajectories, none consider compounding uncertainty into the time horizon analytically. Previous works apply kinematic models deterministically, either for deterministic trajectory prediction or to predict the average trajectory in probabilistic settings, leaving the variance as a learnable matrix.

\ Kalman filtering is a relevant and classical technique that uses kinematic models for trajectory prediction. Kalman filters excel in time-dependent settings where signals may be contaminated by noise, such as object tracking and motion prediction [5], [6]. Unlike classical Kalman filtering methods

\ Fig. 2: Qualitative example. We visualize an example of the mean trajectory of the highest-scored Gaussian from the results of Table II. Standard deviations are visualized as ellipses at each second into the future, and ground truth trajectories are drawn in green. Our method (blue) not only predicts a smoother, less jagged mean trajectory but also provides a more realistic spread of trajectories into the future. The baseline method (red) shows uneven speeds (ellipses are at uneven intervals) in addition to uncertainty extending far beyond the road boundaries.

\ for motion prediction, however, we focus on models of learnable actions and behaviors, rather than constant models of fixed acceleration and velocity. We believe that, with elements from classical methods such as Kalman filtering in addition to powerful modern deep learning architectures, motion prediction in traffic can have the best of both worlds where modeling capability meets stability.

\ In this paper, we go one step further from previous work by considering the relationship between distributions of kinematic parameters to distributions of trajectory rollouts, rather than single deterministic kinematic parameter predictions to the mean of trajectory rollouts [1], [4]. We hypothesize that modeling uncertainty explicitly across timesteps according to a kinematic model will result in better performance, realistic trajectories, and stable learning, especially in disadvantageous settings such as small or noisy datasets, which can be common settings, especially in fine-tuning. We run experiments on four different kinematic formulations with Motion Transformer (MTR) [7] and observe up to a 50% performance boost in partial-dataset settings and up to an 8% performance boost in full dataset settings on mean average precision (mAP) metrics for the Waymo Open Motion Dataset (WOMD) [8] compared to with kinematic priors enforced on mean trajectories only.

\ In summary, the main contributions of this work include:

\

  1. A simple and effective method for incorporating analytically-derived kinematic priors into probabilistic models for trajectory forecasting (Section IV), which boosts performance and generalization (Section V) and requires trivial additional overhead computation;

    \

  2. Results and analysis in different settings on four different kinematic formulations: velocity components vx and vy, acceleration components ax and ay, speed s and heading θ components, and steering δ and acceleration a (Section IV-B).

    \

  3. Analytical error bounds for the first and second-order kinematic formulations (section IV-C).

\ Fig. 3: Linear approximation of position distributions via kinematic priors.

\

II. RELATED WORKS

A. Trajectory Forecasting for Traffic

Traffic trajectory forecasting is a popular task where the goal is to predict the short-term future trajectory of multiple agents in a traffic scene. Being able to predict the future positions and intents of each vehicle provides context for other modules in autonomous driving, such as path planning. Large, robust benchmarks such as the Waymo Motion Dataset [8], [9], Argoverse [10], and the NuScenes Dataset [11] have provided a standardized setting for advancements in the task, with leaderboards showing clear rankings for state-of-the-art models. Amongst the top performing architectures, most are based on Transformers for feature extraction [7], [12], [13], [14], [15]. Current SOTA models also model trajectory prediction probabilistically, as inspired by the use of GMMs in MultiPath [16].

\ One common theme amongst relevant state-of-the-art, however, is that works employing kinematic models for time-integrated trajectory rollouts typically only consider kinematic variables deterministically, which neglect the relation between kinematic input uncertainty and trajectory rollout uncertainty [1], [4], [17]. In our work, we present a method for use of kinematic priors which can be complemented with any previous work in trajectory forecasting. Our contribution can be implemented in any of the SOTA methods above, since it is a simple reformulation of the task with no additional information needed.

\

B. Physics-based Priors for Learning

Model-based learning has shown to be effective in many applications, especially in robotics and graphics. There are generally two approaches to using models of the real world: 1) learning a model of dynamics via a separate neural network [18], [19], [20], [21], or 2) using existing models of the real world via differentiable simulation [22], [23], [24], [25], [26], [27], [28].

\ In our method, we pursue the latter. Since we are not modeling complex systems such as cloth or fluid, simulation of traffic agent states require only a simple, fast, and differentiable update. In addition, since the kinematic models do not describe interactions between agents, the complexity of the necessary model is greatly reduced. In this paper, we hypothesize that modeling the simple kinematics (e.g., how a vehicle moves forward) with equations will allow for greater modeling expressivity on behavior.

\

:::info This paper is available on arxiv under ATTRIBUTION-NONCOMMERCIAL-NODERIVS 4.0 INTERNATIONAL license.

:::

\

ข้อจำกัดความรับผิดชอบ: บทความที่โพสต์ซ้ำในไซต์นี้มาจากแพลตฟอร์มสาธารณะและมีไว้เพื่อจุดประสงค์ในการให้ข้อมูลเท่านั้น ซึ่งไม่ได้สะท้อนถึงมุมมองของ MEXC แต่อย่างใด ลิขสิทธิ์ทั้งหมดยังคงเป็นของผู้เขียนดั้งเดิม หากคุณเชื่อว่าเนื้อหาใดละเมิดสิทธิของบุคคลที่สาม โปรดติดต่อ service@mexc.com เพื่อลบออก MEXC ไม่รับประกันความถูกต้อง ความสมบูรณ์ หรือความทันเวลาของเนื้อหาใดๆ และไม่รับผิดชอบต่อการดำเนินการใดๆ ที่เกิดขึ้นตามข้อมูลที่ให้มา เนื้อหานี้ไม่ถือเป็นคำแนะนำทางการเงิน กฎหมาย หรือคำแนะนำจากผู้เชี่ยวชาญอื่นๆ และไม่ถือว่าเป็นคำแนะนำหรือการรับรองจาก MEXC
แชร์ข้อมูลเชิงลึก

คุณอาจชอบเช่นกัน

Stablecoins and RWA cross-border innovation practices, Shanghai seminar discusses the new financial ecosystem

Stablecoins and RWA cross-border innovation practices, Shanghai seminar discusses the new financial ecosystem

Blockchain technology has become the core driving force for the digital transformation of the financial industry, demonstrating huge potential in application scenarios such as cross-border payments and financial innovation. In particular, stablecoins and RWA ( Real World Assets), as key areas for the implementation of blockchain technology, have attracted widespread attention from the global market. To further promote industry exchanges and explore the opportunities and challenges brought about by the rapid development of stablecoins and RWA , the "Blockchain-Driven Stablecoins and RWA : Exploring Cross-Border Trade and Financial Innovation Practices" event was successfully held in Shanghai on the afternoon of August 22nd . It was hosted by the Shanghai Financial Information Industry Association and the Shanghai Distributed Consensus Technology Association, co-organized by PANews and Mankiw LLP, and supported by Mobile Payment Network and the Blockchain Technology Application Alliance . The seminar was hosted by Zang Qin, Deputy Secretary-General of the Shanghai Financial Information Industry Association. It focused on the exploration and practice of stablecoins and RWA in cross-border trade, financial compliance and other fields. It attracted more than 100 practitioners from banks, securities companies, law firms, asset management institutions, financial technology and start-ups to participate and jointly discuss the implementation path and future development of stablecoins and RWA . Wu Jun, Secretary-General of the Shanghai Financial Information Industry Association, delivered an opening speech on behalf of the organizers, noting that stablecoins are not entirely new, but their payment properties offer significant advantages in cross-border trade , characterized by high efficiency and low costs. Compared to traditional financial systems, stablecoins can be deposited within seconds and offer extremely low fees, making them a highly promising payment tool in international trade. However, he also emphasized that innovation must be promoted under a strict regulatory framework and compliance premise to ensure transparency , so that participants can jointly promote the stable development of digital finance on the basis of fully understanding the risks . PANews senior reporter Wang Shengyu provided an in-depth analysis of the "2025 Global Stablecoin Industry Development Report" during the report interpretation session. He noted that stablecoins have become one of the most critical infrastructures connecting traditional finance and the crypto market and are transforming the global financial landscape. His speech comprehensively analyzed the stablecoin industry, combining on-chain transaction data, policy developments, and the industry's evolutionary path. He systematically examined the six dimensions of stablecoins: development history, market structure, application scenarios, global regulation, development potential, and potential risks. In his opening keynote speech, Mao Jianhao, a senior attorney at Mankiw LLP, analyzed the core logic and compliance path of RWA tokenization from a legal compliance perspective. He noted that the core of RWA lies in its dual attributes of "digitalization " and "programmability," both of which are indispensable. Using BlackRock's BUIDL Fund as an example, he detailed its compliance architecture and on-chain transaction mechanism, emphasizing that "whitelisting mechanisms, redemption processes, and real-time valuation" are the first steps in exploring compliant tokenized funds . He believes that the future development of RWA will rely more on stablecoins as the underlying liquidity tool, and Hong Kong's stablecoin licensing system will provide a clear compliance framework for this field. With the rise of stablecoins and RWAs , the development of related applications within the infrastructure layer has also flourished. Conflux Co-founder and COO Zhang Yuanjie shared the role of domestic public chains in the globalization of stablecoins and RWAs from a public chain perspective , emphasizing the crucial role of the Asia-Pacific region, particularly Hong Kong and mainland China, in the RWA ecosystem. He also mentioned that the current market driving force of RWA mainly comes from the financial management needs of stablecoin holders, rather than traditional financial institutions. It is a bottom-up process of penetration from the crypto market to traditional finance. The final speaker, Zheng Lijiang, Research Manager at Shanghai Wanxiang Blockchain Co., Ltd., addressed the topic from a monetary theory perspective, arguing that stablecoins are not currencies but rather "quasi-currencies," essentially digital certificates issued by the private sector based on reserves such as government bonds. He further analyzed the differences between stablecoin policies in the United States and Hong Kong, noting that Hong Kong currently prioritizes Know Your Customer (KYC) and Anti-Money Laundering (AML) over encouraging DeFi integration. "Exploring the Application of Stablecoins in Cross-border Trade Payments" was the first topic of the roundtable discussion. This round was hosted by Mao Jianhao, a senior lawyer at Mankiw LLP, and invited guests including Zentek VP Erin Du , Robert Feng , Deputy Director of Global Institutional Cooperation for KUN Business, Xu Feng, founder of Coshine Kaixian Software, and Derek Wan, Head of BD for Cobo Payment , to participate in the discussion. Zentek VP Erin Du pointed out that cross-border payments face pain points such as slow bank review, long payment cycles, and high fees, especially in Southeast Asia, where financial infrastructure is still underdeveloped. Robert Feng, deputy director of global institutional cooperation at KUN , added that the political and financial environments of different countries vary greatly, and Latin America and Africa are more receptive to stablecoins due to their weak financial systems. Xu Feng, founder of Coshine Kaixian Software, shared his experience in helping overseas payment institutions connect to the Visa card issuance system, and believed that stablecoins have entered the practical stage in the To B scenario; Derek Wan, BD head of Cobo Payment, emphasized from the perspective of wallets and custody that security is the key to the implementation of stablecoin payments, and proposed the flexibility advantages of "full custody" and "MPC custody" one-stop solutions for cross-border payment companies going overseas. The guests unanimously agreed that stablecoins have moved from "proof of concept" to "large-scale trials" in cross-border payments, but compliance, security and the participation of financial institutions remain the main challenges. The second roundtable discussion focused on the topic of "Market Dynamics and Application Potential of Stablecoins and RWAs ". It was hosted by PANews senior reporter Jae , and guests including Conflux co-founder and COO Zhang Yuanjie, GF Securities Shanghai Branch Institutional Business Deputy Director Li Rongbin, HashKey Group Marketing Director Siya , CertiK Anti-Money Laundering Product Expert Cheng Yuan and others participated in the discussion. Conflux co-founder and COO Zhang Yuanjie pointed out that the core driving force behind the adoption of RWA is the financial management needs of stablecoin holders, and the integration of DeFi protocols has greatly enhanced its appeal through the dual-income model of "underlying asset returns + token incentives"; Li Rongbin, deputy director of institutional business at GF Securities Shanghai Branch, believes that listed companies' enthusiasm for RWAs is partly due to "market value management," but in the long run, they still need to return to the quality and liquidity of the assets themselves; Siya , head of marketing at HashKey Group , said that 2025 is the " first year of the RWA narrative," with factors such as improved regulatory clarity, mature technical infrastructure, and institutional entry jointly driving the market explosion; Cheng Yuan, an anti-money laundering product expert at CertiK , emphasized from a compliance and security perspective that RWA projects need to overcome compliance differences in multiple countries and monitor smart contract risks, and recommended that companies carefully consider the cost and security aspects. The guests believed that although RWA has advantages such as " democratic asset access " and " global liquidity " , it still faces bottlenecks such as high compliance costs, distribution channels relying on the European and American ecosystems, and a shortage of asset managers.
แชร์
PANews2025/08/25 17:35
แชร์