REVIEW 3 major objections 6 minor 2 cited by
Scaling Laws of Motion Forecasting and Planning -- Technical Report
T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Joint motion forecasting and planning follows a language-model-style power-law scaling law, with compute-optimal driving models about 50 times smaller than language models.
desk verdict First credible scaling-law study for AV motion forecasting; the exponents are plausible but more fragile than the quoted error bars suggest. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The argument is carried by a single parametric ansatz: the loss surface is $L(N,D)=E+A/N^\alpha+B/D^\beta$, where $N$ counts non-embedding transformer parameters, $D$ counts training examples, $A$ and $B$ are fitted constants, and $E$ is the irreducible data entropy. The machinery around it is an iso-FLOP study: 84 models from 900K to 118M parameters, trained in seven compute bands, with final validation losses fit to parabolas in $\log N$ and $\log D$ to locate each band's optimum, then power-law fits over the optima to extract the exponents. The models themselves are MotionLM-style encoder-decoder autoregressive transformers that predict discrete Verlet-wrapped displacement tokens for eight agents jointly, with a single flattened agent-time self-attention pass; the FLOPs count in Appendix A determines how parameter and data sizes map to compute. The loss ansatz does the work: it converts a vague belief that 'bigger is better' into two concrete exponents with error bars, which are the paper's main quantitative claims.
What would settle it
Retrain the same model family at a compute budget at least ten times larger than the largest budget used here and compare the measured validation loss with the extrapolated $L(C)=aC^b+L_\infty$ curve; if the data point lands more than three propagated standard deviations above the curve, the power-law extrapolation fails. A complementary check is to vary encoder and decoder depth independently while holding FLOPs fixed: if the loss-minimizing architecture shifts, the Appendix A FLOPs model is mis-ranking models and the $N_{\mathrm{opt}}$ and $D_{\mathrm{opt}}$ exponents are artifacts of that formula.
Extended reading notes
Core claim
On its own terms, the report's central discovery is a scaling law: for an encoder-decoder autoregressive transformer trained to jointly predict the future trajectories of eight road agents, validation cross-entropy follows $L(N,D) = E + A/N^\alpha + B/D^\beta$, with compute-optimal exponents $N_{\mathrm{opt}} \propto C^{0.63\pm0.08}$ and $D_{\mathrm{opt}} \propto C^{0.44\pm0.06}$. This means that at a given training-compute budget, the best driving model is roughly 50 times smaller than a compute-optimal language model at the same budget, while requiring far more data. The same compute-optimal series shows consistent power-law improvement in open-loop distance metrics (minADE and wADE) and, after short fine-tuning to route-conditioned single-agent planning, a power-law decrease in closed-loop simulation failures. Finally, the report shows that increasing inference-time sampling improves small-model metrics until a crossover, beyond which a larger model is more inference-compute efficient, and that models trained without the ego vehicle zero-shot predict ego-agent trajectories at a rate of about ten observed miles per two to three demonstrated miles.
Load-bearing premise
The load-bearing premise is that the true validation loss is exactly $L(N,D)=E+A/N^\alpha+B/D^\beta$ with the paper's FLOPs formula correctly ranking architectures, so the exponents fitted on 84 runs across a two-order-of-magnitude compute range remain valid when extrapolated beyond it.
Editorial extensions
If this is right
- At a fixed training-compute budget, the optimal driving model is about 50 times smaller than the optimal language model, so compute invested in driving models should buy data, not a much larger network.
- As the compute budget grows, model parameters should increase roughly 1.5 times faster than training examples, which means the model-size axis grows somewhat faster than the data axis.
- Open-loop loss, minADE, and wADE improve together with compute, so loss-based hill climbing is a reliable stand-in for forecast quality.
- Closed-loop simulation failures fall as a power law of pretraining compute, meaning open-loop scaling studies can be used to predict simulator safety rather than only offline accuracy.
- Increasing inference-time samples makes smaller models competitive with larger ones up to a crossover, after which the larger model is the better use of inference FLOPs.
Reading between the lines
- A testable extension: if the fitted entropy constant $E$ reflects the limited perception feature set (the paper names this as a hypothesis), then adding richer inputs such as camera or LiDAR tokens should lower the floor of the loss curve and could change the exponents; rerunning the smallest iso-FLOP band with vision inputs would test this directly.
- The zero-shot transfer from other agents' trajectories suggests a data-collection strategy the paper only gestures at: passive multi-platform driving logs could substitute for ego-demonstrated miles, and the observed 10 observed miles per 2 to 3 demonstrated miles ratio gives a rough cost-equivalence to test on larger, truly passive corpora.
- The inference-compute crossover implies an adaptive serving policy: pick the smallest model whose sampling curve has not yet saturated and increase samples per scenario up to that model's crossover; this is a direct, testable extension of the paper's inference-scaling analysis.
- If the 1.5x model-to-data growth ratio carries over to other continuous-control planning tasks, robotics teams should bias fixed compute budgets toward data collection over model capacity, but that generalization is not established by this report.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper reports an empirical scaling-law study of an encoder-decoder autoregressive transformer for joint motion forecasting and planning, trained on a proprietary Waymo dataset of roughly 447,000 driving hours. Following the IsoFLOP methodology of Hoffmann et al. (2022), the authors train 84 models across 7 compute budgets, fit parabolic loss curves in log-parameter and log-data space within each iso-FLOP band, and extract compute-optimal exponents N_opt ∝ C^0.63±0.08 and D_opt ∝ C^0.44±0.06 (Section 4.1, Figure 4). They further report that compute-optimal loss is better described by a power law plus a constant than by a pure power law (Section 4.2), that open-loop distance metrics improve with compute (Section 5.1), that closed-loop failure count decreases with pretraining compute (Section 5.2), that inference-time sampling can make smaller models competitive up to a crossover point (Section 6), and that training on other agents' trajectories transfers to the ego-agent (Section 7). The paper is careful in several places to label the open-loop and closed-loop trends as preliminary, noting that more compute orders of magnitude are needed to establish power-law behavior.
Significance. If the central scaling exponents are reliable, this is one of the first large-scale demonstrations that compute-optimal scaling in an autonomous-driving prediction and planning task differs quantitatively from language modeling, with substantially smaller optimal models and a stronger preference for data. The paper also contributes a controlled comparison between open-loop and closed-loop scaling within a single architecture and loss, which is valuable for a field that has mostly seen confounded cross-model comparisons. Credit should be given for the explicit caveats in Sections 5.1 and 9 about the limited compute range, the reporting of fit-error propagation formulas in Appendix B, and the unusually large proprietary dataset. The main risk is that the headline exponents are extracted from a narrow, curvature-dominated compute range using a two-stage fitting procedure whose error bars do not include model-form or grid-selection uncertainty; this concern is central to the paper's primary quantitative claim and needs to be addressed before the exponents can be treated as predictive.
major comments (3)
- [Section 4.1, Figure 4, Appendix B] The quoted exponents N_opt ∝ C^0.63±0.08 and D_opt ∝ C^0.44±0.06 rest on a two-stage fit: a parabola in log x within each of seven iso-FLOP bands, followed by a power-law fit through the seven minima. Appendix B propagates only the parabola-fit covariance into the displayed error bands, but it does not account for model-form uncertainty or for the coarse model grid: model size is varied by changing layer count at only two width-to-depth ratios, giving roughly a dozen configurations per band. Because Section 4.2 shows that the loss is already approaching an irreducible floor over this same range, the parabola minima in the low-compute bands are weakly constrained, and the second-stage power law depends heavily on the least informative points. I ask the authors to demonstrate stability of the exponents by, for example, fitting the full loss surface directly to Eq. (4), by excluding or down-weighting the low-compute bands, or by bootstrap resampling over the 84 runs; otherwise the ±0.08 and ±0.06 uncertainties are likely optimistic.
- [Section 4.2, Figure 5] The paper states that adding a constant to the power-law fit, L(C) = aC^b + L∞, explains the compute-optimal loss data significantly better than a pure power law. This is not merely a remark about the loss curve; it directly bears on the exponent extraction in Section 4.1, because the same loss values determine the parabola minima used to estimate N_opt(C) and D_opt(C). If the loss is close to an irreducible floor, the low-compute bands may not lie on the same pure power-law surface assumed by the two-stage procedure. I request a sensitivity analysis that fits the parabola with an explicit floor, or that re-extracts the exponents after removing the lowest-compute bands and reports whether N_opt ∝ C^0.63 and D_opt ∝ C^0.44 remain within the stated uncertainties.
- [Section 5.2, Figure 10] The closed-loop claim — that the number of failures η decreases as a power law of pretraining compute — is presented with a fitted curve but without reporting the fit parameters, their uncertainties, the number of compute budgets used, the number of scenarios in the closed-loop validation set, or confidence intervals on η. Since η is a low-count failure metric and each model's progress-bias hyperparameter α is tuned individually to match assertiveness, the plot alone does not establish that the trend is statistically distinguishable from noise or that the α-calibration is not absorbing model differences. I ask that the closed-loop analysis report the quantitative fit constants and error bars, and ideally a bootstrap or confidence-interval calculation over scenarios.
minor comments (6)
- [Abstract and Section 3, Table 1] The abstract says a '500 thousand hours' driving dataset, while Table 1 reports 447 thousand hours; please make the rounding explicit or use a single number consistently.
- [Section 5.1, Eq. (5)] In the minADE definition, the notation ||y_t^k − ŷ_t||_2 is used for what should be a displacement error averaged over time; consider clarifying that the norm is taken over spatial coordinates.
- [Section 5.2, Eq. (7)] The progress-bias parameter α is introduced without stating its units or range; since α is calibrated per model, a brief description of the calibration procedure and how assertiveness is measured would help reproducibility.
- [Section 7, Figure 15] The '10 observed miles equivalent to 2–3 demonstrated miles' claim would be more informative with confidence intervals from the iso-loss fits, and with an explicit reminder that the data are collected on the same AV platform, as the text already notes.
- [Appendix B] The appendix correctly notes that first-order error propagation is biased for nonlinear fits, but it does not quantify how large this bias is for the reported 3σ bands; a short numeric comparison would be useful.
- [Figures 9 and 13] The qualitative trajectory figures would benefit from captions stating which model sizes and which sample counts are shown, and whether the same scenarios are used across panels.
Circularity Check
No circularity: the scaling exponents are empirical fits to the paper's own training runs and are not forced by construction; self-citations provide only architecture, dataset, and metric definitions.
full rationale
All load-bearing claims are derived from the paper's own 84 training runs via standard iso-FLOP analysis (Section 4.1, Figures 2-4), not from an equation that is equivalent to the target result by construction. The functional form L(N,D)=E+A/N^alpha+B/D^beta (Eq. 4) is an externally motivated assumption taken from Hoffmann et al. (2022) and Ghorbani et al. (2021), and the exponents N_opt proportional to C^0.63 and D_opt proportional to C^0.44 are estimated by first fitting per-band parabolas and then a power law through the minima; nothing in that procedure forces the reported exponents. The paper explicitly cautions that power-law fits for open-loop metrics are provisional (Section 5.1, Figure 7), and Section 4.2 reports that a power-law-plus-constant fits the loss better, which is an honest model-selection statement rather than a circular step. Self-citations to MotionLM (Seff et al., 2023), Wayformer (Nayakanti et al., 2022), and WOMD (Ettinger et al., 2021) supply the architecture, scene-encoder design, and dataset/metric interface; they do not supply the scaling-law result, so they are not load-bearing. The skeptic's concern about the narrow compute range and optimistic error bars is a robustness and statistical-inference issue, not circular reasoning: no fitted parameter is renamed as an independent prediction, and no equation reduces to its own inputs by definition.
Assumptions & free parameters
free parameters (7)
- Loss-scaling constants E, A, B, alpha, beta (Eq. 4) =
Not reported numerically
- IsoFLOP parabola parameters a, x_opt, L_opt per compute band =
Per-band fit values not tabulated
- Power-law coefficients for N_opt(C) and D_opt(C) =
N_opt ∝ C^(0.63±0.08), D_opt ∝ C^(0.44±0.06)
- L(C) = aC^b + L_inf fit constants =
Not reported numerically
- Closed-loop progress-bias alpha (Eq. 7) =
Tuned per model on validation set
- Closed-loop failure-count fit constants =
Not reported numerically
- Iso-loss fit constants for cross-agent data equivalency =
Result: 10 observed miles ≈ 2-3 demonstrated miles
assumptions (5)
- domain assumption Training loss obeys the functional form L(N,D) = E + A/N^alpha + B/D^beta (Eq. 4).
- domain assumption The Appendix A FLOPs model accurately ranks training cost across model sizes.
- domain assumption Validation cross-entropy is the correct scalar objective for driving quality.
- domain assumption The closed-loop simulator with logged playback and imitation-learned agents is a faithful proxy for real-world driving safety.
- domain assumption Compute-optimal exponents fitted from 900K to 118M parameter models extrapolate to larger compute budgets.
Cite this review
Pith. "Pith review of Scaling Laws of Motion Forecasting and Planning -- Technical Report." pith.science (2026). https://pith.science/paper/GKLJYD2F
@misc{pith2026250608228,
author = {Pith},
title = {Pith review of: Scaling Laws of Motion Forecasting and Planning -- Technical Report},
year = {2026},
howpublished = {\url{https://pith.science/paper/GKLJYD2F}},
note = {Machine review of arXiv:2506.08228}
}
read the original abstract
We study the empirical scaling laws of a family of encoder-decoder autoregressive transformer models on the task of joint motion forecasting and planning in the autonomous driving domain. Using a 500 thousand hours driving dataset, we demonstrate that, similar to language modeling, model performance improves as a power-law function of the total compute budget, and we observe a strong correlation between model training loss and model evaluation metrics. Most interestingly, closed-loop metrics also improve with scaling, which has important implications for the suitability of open-loop metrics for model development and hill climbing. We also study the optimal scaling of the number of transformer parameters and the training data size for a training compute-optimal model. We find that as the training compute budget grows, optimal scaling requires increasing the model size 1.5x as fast as the dataset size. We also study inference-time compute scaling, where we observe that sampling and clustering the output of smaller models makes them competitive with larger models, up to a crossover point beyond which a larger models becomes more inference-compute efficient. Overall, our experimental results demonstrate that optimizing the training and inference-time scaling properties of motion forecasting and planning models is a key lever for improving their performance to address a wide variety of driving scenarios. Finally, we briefly study the utility of training on general logged driving data of other agents to improve the performance of the ego-agent, an important research area to address the scarcity of robotics data for large capacity models training.
Figures
Figures from the paper (12 more)
Forward citations
Cited by 2 Pith papers
-
When to Plan: Learning to Select Between Reactive Control and Deliberative Planning
An RL-trained meta-policy that uses ensemble uncertainty to choose between a cheap reactive policy and costly planning reaches goals faster than fixed baselines and adapts as the reactive policy improves.
-
Vernata: Self-Supervised Learning of LiDAR Point Representations
Vernata extends Sonata with sparse-view augmentation, a Sinkhorn-Knopp memory bank, and high-resolution 2D-to-3D distillation, improving LiDAR semantic segmentation mIoU by 5.9 to 7.3 points over baselines.
Reference graph
Works this paper leans on
-
[1]
M.-K. Bouzidi, C. Schlauch, N. Scheuerer, Y . Yao, N. Klein, D. Göhring, and J. Reichardt. Closing the loop: Motion prediction models beyond open-loop benchmarks. arXiv preprint arXiv:2505.05638,
-
[2]
+m∗(28Dd2 +4dD 2 +4Ed 2 +4dDE) Number of parameters:(12n+16m)∗d 2 B Fits Error Propagation The key question in error propagation is that if one has a function f(x;θ 0, . . . ,θn), that depends on estimated parameters ˆθi, and one also has access to their estimated covariance σi,j =cov( ˆθi, ˆθ j), how does one estimate the errors in f(x;, ˆθ0, . . . ,ˆθn)...
work page 2006
-
[4]
URL https://arxiv.org/abs/2410.06158. J. Cheng, Y . Chen, X. Mei, B. Yang, B. Li, and M. Liu. Rethinking imitation-based planners for autonomous driving. In 2024 IEEE International Conference on Robotics and Automation (ICRA), pages 14123–14130. IEEE,
arXiv 2024
-
[8]
URLhttps://arxiv.org/abs/2407.21783. Z. Hao, D. W. Romero, T.-Y . Lin, and M.-Y . Liu. Meshtron: High-fidelity, artist-like 3d mesh generation at scale,
-
[9]
URLhttps://arxiv.org/abs/2412.09548. T. Henighan, J. Kaplan, M. Katz, M. Chen, C. Hesse, J. Jackson, H. Jun, T. B. Brown, P. Dhariwal, S. Gray, et al. Scaling laws for autoregressive generative modeling. arXiv preprint arXiv:2010.14701,
arXiv 2010
-
[11]
URLhttps://arxiv.org/abs/2102.01293. D. Hernandez, T. Brown, T. Conerly, N. DasSarma, D. Drain, S. El-Showk, N. Elhage, Z. Hatfield-Dodds, T. Henighan, T. Hume, S. Johnston, B. Mann, C. Olah, C. Olsson, D. Amodei, N. Joseph, J. Kaplan, and S. McCandlish. Scaling laws and interpretability of learning from repeated data,
-
[12]
URLhttps://arxiv.org/abs/2205.10487. J. Hestness, S. Narang, N. Ardalani, G. Diamos, H. Jun, H. Kianinejad, M. M. A. Patwary, Y . Yang, and Y . Zhou. Deep learning scaling is predictable, empirically. arXiv preprint arXiv:1712.00409,
-
[14]
A. Hu, L. Russell, H. Yeo, Z. Murez, G. Fedoseev, A. Kendall, J. Shotton, and G. Corrado. Gaia-1: A generative world model for autonomous driving. arXiv preprint arXiv:2309.17080,
Show all 31 references
-
[16]
URLhttps://arxiv.org/abs/2403.13331. J. Kaplan, S. McCandlish, T. Henighan, T. B. Brown, B. Chess, R. Child, S. Gray, A. Radford, J. Wu, and D. Amodei. Scaling laws for neural language models. arXiv preprint arXiv:2001.08361,
2001 arXiv
-
[17]
URLhttps://arxiv.org/abs/2406.09246. S. Kudugunta, A. Kusupati, T. Dettmers, K. Chen, I. Dhillon, Y . Tsvetkov, H. Hajishirzi, S. Kakade, A. Farhadi, P. Jain, et al. Matformer: Nested transformer for elastic inference. arXiv preprint arXiv:2310.07707,
-
[18]
Z. Li, S. Wang, S. Lan, Z. Yu, Z. Wu, and J. M. Alvarez. Hydra-next: Robust closed-loop driving with open-loop training. arXiv preprint arXiv:2503.12030,
-
[20]
doi: 10.1109/ICRA40945.2020.9197340. N. Muennighoff, A. M. Rush, B. Barak, T. L. Scao, A. Piktus, N. Tazi, S. Pyysalo, T. Wolf, and C. Raffel. Scaling data-constrained language models,
2020
-
[21]
URLhttps://arxiv.org/abs/2305.16264. N. Nayakanti, R. Al-Rfou, A. Zhou, K. Goel, K. S. Refaat, and B. Sapp. Wayformer: Motion forecasting via simple & efficient attention networks. ArXiv, abs/2207.05844,
-
[22]
URLhttps://arxiv.org/abs/2106.08417. K. Pertsch, K. Stachowicz, B. Ichter, D. Driess, S. Nair, Q. Vuong, O. Mees, C. Finn, and S. Levine. Fast: Efficient action tokenization for vision-language-action models,
-
[23]
URLhttps://arxiv.org/abs/2501.09747. N. Sardana and J. Frankle. Beyond chinchilla-optimal: Accounting for inference in language model scaling laws. arXiv preprint arXiv:2401.00448,
-
[24]
URLhttps://arxiv.org/abs/2306.17770. C. Snell, J. Lee, K. Xu, and A. Kumar. Scaling llm test-time compute optimally can be more effective than scaling model parameters. arXiv preprint arXiv:2408.03314,
-
[25]
URLhttps://arxiv.org/abs/2312.13139. D. Yang, J. Tian, X. Tan, R. Huang, S. Liu, X. Chang, J. Shi, S. Zhao, J. Bian, Z. Zhao, X. Wu, and H. Meng. Uniaudio: An audio foundation model toward universal audio generation,
-
[26]
URL https://arxiv.org/abs/ 2310.00704. B. Yao, A. Ganesh, Z. Li, and A. Petiushko. At nuro, we conduct an ai- first approach by using ml everywhere,
-
[27]
Accessed: 2025-03-12
URL https://medium.com/nuro/ at-nuro-we-conduct-an-ai-first-approach-by-using-ml-everywhere-5faf4657fff3 . Accessed: 2025-03-12. S. Ye, J. Jang, B. Jeon, S. Joo, J. Yang, B. Peng, A. Mandlekar, R. Tan, Y .-W. Chao, B. Y . Lin, L. Liden, K. Lee, J. Gao, L. Zettlemoyer, D. Fox, ...
2025
-
[28]
URL https://arxiv.org/abs/ 2410.11758. C. Yu, X. Ma, J. Ren, H. Zhao, and S. Yi. Spatio-temporal graph transformer networks for pedestrian trajectory prediction,
-
[29]
URLhttps://arxiv.org/abs/2005.08514. Y . Yuan, X. Weng, Y . Ou, and K. M. Kitani. Agentformer: Agent-aware transformers for socio-temporal multi- agent forecasting. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pages 9813–9823, October
2005 arXiv
-
[30]
Zheng, Z
Y . Zheng, Z. Xia, Q. Zhang, T. Zhang, B. Lu, X. Huo, C. Han, Y . Li, M. Yu, B. Jin, et al. Preliminary investigation into data scaling laws for imitation learning-based end-to-end autonomous driving. arXiv preprint arXiv:2412.02689,
-
[31]
Appendices A FLOPs and Parameters Computation When computing flops and number of parameters, we include einsums in attention and feed-forward layers
URLhttps://arxiv.org/abs/2405.17372. Appendices A FLOPs and Parameters Computation When computing flops and number of parameters, we include einsums in attention and feed-forward layers. We ignore embedding and normalization layers. When computing flops, each multiply-add coun...
-
[2009]
URLhttps://doi.org/10.1137/070710111
doi: 10.1137/070710111. URLhttps://doi.org/10.1137/070710111. D. Dauner, M. Hallgarten, A. Geiger, and K. Chitta. Parting with misconceptions about learning-based vehicle motion planning, 2023a. URLhttps://arxiv.org/abs/2306.07962. D. Dauner, M. Hallgarten, A. Geiger, and K. C...
-
[2017]
Hoffmann, S
J. Hoffmann, S. Borgeaud, A. Mensch, E. Buchatskaya, T. Cai, E. Rutherford, D. d. L. Casas, L. A. Hendricks, J. Welbl, A. Clark, et al. Training compute-optimal large language models. arXiv preprint arXiv:2203.15556,
-
[2020]
URLhttps://arxiv.org/abs/2005.14165. S. Casas, A. Sadat, and R. Urtasun. Mp3: A unified model to map, perceive, predict and plan. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 14403–14412,
2005 arXiv
-
[2021]
Ghorbani, O
B. Ghorbani, O. Firat, M. Freitag, A. Bapna, M. Krikun, X. Garcia, C. Chelba, and C. Cherry. Scaling laws for neural machine translation. arXiv preprint arXiv:2109.07740,
-
[2022]
URLhttps://arxiv.org/abs/2104.00563. A. Grattafiori, A. Dubey, A. Jauhri, A. Pandey, A. Kadian, A. Al-Dahle, A. Letman, A. Mathur, A. Schelten, A. Vaughan, A. Yang, A. Fan, A. Goyal, A. Hartshorn, A. Yang, A. Mitra, A. Sravankumar, A. Korenev, A. Hinsvark, A. Rao, A. Zhang, A....
-
[2023]
Huang, E
X. Huang, E. M. Wolff, P. Vernaza, T. Phan-Minh, H. Chen, D. S. Hayden, M. Edmonds, B. Pierce, X. Chen, P. E. Jacob, et al. Drivegpt: Scaling autoregressive behavior models for driving. arXiv preprint arXiv:2412.14415,
-
[2024]
URLhttps://arxiv.org/abs/2407.21787. T. B. Brown, B. Mann, N. Ryder, M. Subbiah, J. Kaplan, P. Dhariwal, A. Neelakantan, P. Shyam, G. Sastry, A. Askell, S. Agarwal, A. Herbert-V oss, G. Krueger, T. Henighan, R. Child, A. Ramesh, D. M. Ziegler, J. Wu, C. Winter, C. Hesse, M. Ch...
-
[2025]
Mercat, T
J. Mercat, T. Gilles, N. El Zoghby, G. Sandou, D. Beauvois, and G. P. Gil. Multi-head attention for multi-modal joint vehicle motion forecasting. In 2020 IEEE International Conference on Robotics and Automation (ICRA), pages 9638–9644,
2020
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.