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.

:::

\

Clause de non-responsabilité : les articles republiés sur ce site proviennent de plateformes publiques et sont fournis à titre informatif uniquement. Ils ne reflètent pas nécessairement les opinions de MEXC. Tous les droits restent la propriété des auteurs d'origine. Si vous estimez qu'un contenu porte atteinte aux droits d'un tiers, veuillez contacter service@support.mexc.com pour demander sa suppression. MEXC ne garantit ni l'exactitude, ni l'exhaustivité, ni l'actualité des contenus, et décline toute responsabilité quant aux actions entreprises sur la base des informations fournies. Ces contenus ne constituent pas des conseils financiers, juridiques ou professionnels, et ne doivent pas être interprétés comme une recommandation ou une approbation de la part de MEXC.
Partager des idées

Vous aimerez peut-être aussi

Institutional Digital Asset Adoption: SBI Group and Chainlink Forge a Revolutionary Partnership

Institutional Digital Asset Adoption: SBI Group and Chainlink Forge a Revolutionary Partnership

BitcoinWorld Institutional Digital Asset Adoption: SBI Group and Chainlink Forge a Revolutionary Partnership The financial world is witnessing a transformative shift, with institutional digital asset adoption emerging as a key driver of innovation. In a significant move that underscores this trend, SBI Group, one of Japan’s largest financial conglomerates, has announced a strategic partnership with Chainlink, the leading decentralized oracle network. This collaboration aims to accelerate the embrace of blockchain technology and digital assets by institutions globally, marking a pivotal moment for the industry. Why is Institutional Digital Asset Adoption a Game-Changer? Institutions, from banks to asset managers, are increasingly recognizing the immense potential of digital assets. They offer unprecedented efficiencies, transparency, and new investment opportunities. However, navigating the complexities of blockchain technology, ensuring security, and achieving seamless integration with existing systems have been significant hurdles. This is where partnerships like SBI and Chainlink become vital, paving the way for broader institutional digital asset adoption. Consider the traditional financial landscape. It often grapples with: Slow settlement times. High operational costs. Limited interoperability between different systems. Digital assets, especially when tokenized and managed on secure, interoperable blockchain networks, promise to address these challenges head-on. The collaboration between SBI and Chainlink directly targets these pain points. Unlocking Potential: The SBI Group and Chainlink Partnership The strategic alliance between SBI Group and Chainlink is set to revolutionize how institutions interact with digital assets. Announced via a PR Newswire release, this partnership focuses on leveraging Chainlink’s robust suite of services to facilitate the secure and efficient transfer of value across various blockchains. This is crucial for accelerating institutional digital asset adoption. The core of this collaboration involves three key Chainlink technologies: Cross-Chain Interoperability Protocol (CCIP): This protocol enables secure communication and transfer of value between different blockchain networks. It’s like a universal translator for blockchains, allowing assets and data to move freely and safely. SmartData: Chainlink’s oracle services provide reliable, real-world data to smart contracts. For institutions, this means access to accurate market prices, interest rates, and other critical information directly on-chain, powering sophisticated financial products. Proof of Reserve: This mechanism offers cryptographic proof of an asset’s collateralization, ensuring that tokenized assets are fully backed by their underlying reserves. This transparency builds crucial trust for institutions venturing into tokenized real-world assets. These tools are essential for building a robust infrastructure that supports the complex needs of institutional players in the digital asset space. What Challenges Does This Partnership Tackle for Institutional Digital Asset Adoption? The path to widespread institutional digital asset adoption is not without its obstacles. One major challenge is the fragmented nature of the blockchain ecosystem. Different blockchains often operate in isolation, making it difficult to transfer assets or data between them. Chainlink’s CCIP directly addresses this by providing a secure, standardized way for cross-chain interactions. Another significant hurdle is data integrity. Institutions require highly reliable and tamper-proof data to make informed decisions and execute smart contracts. Chainlink’s SmartData ensures that off-chain data feeds are delivered securely and accurately to on-chain applications, mitigating risks associated with unreliable information. Furthermore, trust and regulatory compliance are paramount. For tokenized real-world assets, institutions need assurances that the digital representation is genuinely backed by physical assets. Chainlink’s Proof of Reserve offers this verifiable transparency, helping to meet regulatory requirements and foster confidence among institutional investors. Paving the Way: The Future of Institutional Digital Asset Adoption This partnership is more than just a collaboration; it’s a blueprint for the future of finance. By combining SBI Group’s deep financial expertise and extensive network with Chainlink’s cutting-edge decentralized infrastructure, the two entities are creating a powerful synergy. This will undoubtedly accelerate the global movement towards institutional digital asset adoption. Imagine a future where: Real-world assets like real estate or commodities are seamlessly tokenized and traded across multiple blockchains. Financial institutions can issue and manage digital bonds with unprecedented efficiency. Cross-border payments become instant and significantly cheaper. The SBI-Chainlink alliance is actively building the rails for this exciting future, offering actionable insights for other financial players considering their foray into digital assets. It highlights the importance of robust, secure, and interoperable infrastructure. In conclusion, the partnership between SBI Group and Chainlink represents a monumental leap forward for the digital asset landscape. By integrating Chainlink’s CCIP, SmartData, and Proof of Reserve, this collaboration is actively dismantling barriers to institutional digital asset adoption. It promises to usher in an era of greater efficiency, transparency, and innovation across global finance, truly transforming how institutions interact with the burgeoning world of blockchain and digital assets. Frequently Asked Questions (FAQs) 1. What is the SBI Group and Chainlink partnership about? The partnership between SBI Group and Chainlink aims to accelerate the global institutional digital asset adoption by leveraging Chainlink’s decentralized oracle network and its advanced technologies. 2. What Chainlink technologies are involved in this collaboration? The collaboration primarily utilizes Chainlink’s Cross-Chain Interoperability Protocol (CCIP), SmartData, and Proof of Reserve to support cross-chain tokenized real-world assets. 3. How does CCIP benefit institutional digital asset adoption? CCIP enables secure communication and transfer of value across different blockchain networks, solving the critical challenge of interoperability for institutions dealing with diverse digital assets. 4. What role does Proof of Reserve play in this partnership? Proof of Reserve provides cryptographic verification that tokenized assets are fully backed by their underlying reserves, building essential trust and aiding regulatory compliance for institutions. 5. What are the main benefits for institutions from this partnership? Institutions benefit from enhanced security, improved data integrity, seamless cross-chain interoperability, and increased transparency, all of which are crucial for large-scale institutional digital asset adoption. 6. How will this partnership impact the future of finance? This partnership is expected to accelerate the tokenization of real-world assets, streamline financial operations, and foster a more interconnected and efficient global financial system, setting a precedent for future innovations. Did you find this article insightful? Share your thoughts and help spread the word about this groundbreaking partnership! Your shares on social media help us reach more individuals interested in the future of finance and blockchain technology. To learn more about the latest explore our article on key developments shaping institutional digital asset adoption and its future growth. This post Institutional Digital Asset Adoption: SBI Group and Chainlink Forge a Revolutionary Partnership first appeared on BitcoinWorld and is written by Editorial Team
Partager
Coinstats2025/08/25 10:55
Partager