Pith. sign in

REVIEW 3 major objections 6 minor 1 cited by

AdaWM: Adaptive World Model based Planning for Autonomous Driving

T0 review · 3 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read AdaWM's central claim is that identifying whether the dynamics model or the policy is the dominant mismatch, and updating only that component, prevents the performance collapse that naive pretrain-finetune suffers in autonomous driving.

desk verdict Useful adaptive finetuning idea for world-model RL, but the central causal claim rests on an ablation that confounds the selection rule with the low-rank update machinery. read the letter →

arxiv 2501.13072 v2 pith:E6YJ66DA submitted 2025-01-22 cs.RO cs.AI

classification cs.ROcs.AI
keywords worldmodelsmodel-basedreinforcementlearningpretrain-finetunedistributionshiftautonomousdrivingmismatchidentificationlow-rankadaptationtotal-variationdistance
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper tries to establish that the performance drop seen when a pretrained world model and planning policy are finetuned online for a new driving task has two separate root causes—mismatch of the dynamics model and mismatch of the policy—and that the correct finetuning strategy is to identify which mismatch dominates at each step and update only that component. It proves an upper bound on the performance gap separating these two contributions and converts the bound into a threshold rule based on total-variation distances. In CARLA tests spanning roundabouts, left turns, dense traffic, and five additional challenging scenarios, the resulting method, AdaWM, beats no finetuning, fixed model-only or policy-only finetuning, and alternating updates on both success rate and time-to-collision. The claim matters because pretrain-finetune is the standard route to practical driving reinforcement learning, and naive finetuning can make an agent worse before it recovers.

What carries the argument

The central object is the mismatch-identification comparator: at each finetuning step AdaWM estimates the total-variation (TV) distance between the pretrained and current dynamics models, $D_{\mathrm{TV}}(P\|\hat P)$, and between the pretrained and current policies, $D_{\mathrm{TV}}(\pi\|\hat\pi)$, then updates the dynamics model when the former exceeds $C$ times the latter. This comparator is the algorithmic embodiment of Theorem 1, whose bound attributes the performance gap to two additive terms; whichever term dominates should be updated first. To keep updates cheap, the dynamics model is adjusted with a low-rank LoRA-style update (updating only the low-dimensional weight $B$ so that $\phi' = (B'Z)^\top \Phi$) and the policy is represented as a convex combination of sub-units whose mixing weights $\Delta$ are updated.

What would settle it

Run AdaWM on a task where the pretrained dynamics are already correct for the new environment (same transition dynamics) but the reward is changed so that only the policy is wrong; if the TV-based rule often selects the dynamics-model update, or if AdaWM does not beat policy-only finetuning, the identification step fails. A more direct check is to compute the true TV distances in a synthetic MDP and test whether the inequality $D_{\mathrm{TV}}(P\|\hat P) > C\,D_{\mathrm{TV}}(\pi\|\hat\pi)$ selects the component that the Theorem 1 bound identifies as dominant.

Watch

Extended reading notes

Core claim

AdaWM claims that pretrained autonomous-driving agents fail during online finetuning primarily because either the latent dynamics model or the planning policy no longer matches the new task, and that updating the dominating mismatched component—rather than everything, or the wrong thing—recovers performance efficiently. The paper formalizes this with Theorem 1, an upper bound on the performance gap $\eta - \hat{\eta}$ that splits into a dynamics-model-mismatch term (governed by $E_{\hat P}$ and $E_{\max}$) and a policy-mismatch term (governed by $E_\pi$). The method then estimates the two mismatches as total-variation distances between pretrained and current distributions, updates the dynamics model when $D_{\mathrm{TV}}(P\|\hat P) > C \cdot D_{\mathrm{TV}}(\pi\|\hat\pi)$, and updates the policy otherwise. Experiments report that this selective update raises success rate to 0.82 on the roundabout task (from 0.40 with no finetuning) and to 0.70–0.89 across the harder tasks, with higher time-to-collision than fixed strategies.

Load-bearing premise

AdaWM's update rule assumes that the total-variation distances computed from replay and online samples are trustworthy stand-ins for the theoretical model and policy mismatch terms, and that one tuning scalar $C$ can safely encode the more complicated criterion derived from the bound; if those estimates are noisy or $C$ is mis-set, the method will pick the wrong component to update.

Editorial extensions

If this is right

  • A pretrained world-model agent can be adapted to a new town, turn type, or traffic density in about one hour on a single GPU without the sharp performance drop typical of naive finetuning.
  • Designers of driving RL systems can use TV distances between replay and online samples as a cheap diagnostic for whether to update the dynamics model or the policy.
  • Fixed finetuning strategies—always model, always policy, or alternating between them—are dominated by the adaptive rule on the tested CARLA scenarios.
  • The low-rank updates keep online finetuning computationally feasible, so the approach is compatible with very large pretrained world models.
  • Higher time-to-collision and success rate on unseen scenarios follow directly from updating the component that actually limits performance, rather than updating both components blindly.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Beyond the paper: the same "update the dominating mismatch" rule should transfer to other world-model RL domains, such as robot manipulation, wherever distribution shift separates into model error and policy suboptimality.
  • Beyond the paper: because the threshold $C$ collapses two theoretical constants into one free scalar, the method's robustness across $C=2$ to $C=50$ suggests the decision boundary is fairly flat, but a task-specific sweep would still be needed in new applications.
  • Beyond the paper: a direct test of the identification step is to change only the reward function while keeping dynamics identical; the policy mismatch should dominate, and AdaWM should then choose policy updates almost every step.
  • Beyond the paper: the method does not require a particular world-model backbone, so it could be layered onto any pretrained latent-dynamics planner, making the mismatch-identification loop a reusable plug-in for online adaptation.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 6 minor

Summary. The paper studies pretrain-finetune for world-model-based RL in autonomous driving. It identifies two sources of performance degradation under distribution shift—dynamics-model mismatch and policy mismatch—and derives an upper bound (Theorem 1) that decomposes the performance gap into model-related and policy-related terms. It then proposes AdaWM, which at each finetuning step estimates TV distances between replay and online distributions and updates either the dynamics model (via a NoLa/LoRA low-rank update) or the policy (via a convex-combination weight update), depending on a threshold C. Experiments in CARLA compare AdaWM with supervised baselines and with fixed finetuning strategies, reporting large TTC/SR improvements on the main tasks and on five additional scenarios in Appendix G.

Significance. If the central attribution is supported, the paper would be a useful contribution: it gives a principled decomposition of the finetuning performance gap, a concrete criterion for choosing which component to update, and a comparatively broad CARLA evaluation. Strengths include the clear motivating example, the Theorem 1 decomposition, the detailed experimental setup, and the inclusion of five additional scenarios beyond the main benchmark. However, the current experimental design does not isolate the adaptive selection mechanism from the low-rank update machinery, and the implemented mismatch criterion is a simplified scalar-threshold heuristic whose free parameter is tuned on the test tasks. These gaps prevent the paper, as written, from supporting its strongest claim that mismatch identification is what drives the gains.

major comments (3)
  1. [§3.1.1, Table 3] The central comparison does not control for the update mechanism. AdaWM updates the dynamics model only through the NoLa/LoRA low-rank parameterization and the policy only through the convex-combination weights (Algorithm 1 lines 5–7 and §2.2), but the paper does not state that the Model-only, Policy-only, and Model+Policy baselines use the same low-rank update rules, learning rates, update budgets, or numbers of gradient steps. The large differences in Table 3 (e.g., ROM03: AdaWM TTC 2.05 and SR 0.82 versus at most 0.95 and 0.60 for the baselines) could therefore be due to the implicit regularization or optimization stability of the low-rank updates rather than to adaptive selection. A matched control in which the same update machinery is applied to model-only, policy-only, alternating, and adaptive schedules is needed before the gains can be attributed to mismatch identification.
  2. [§2.1, Algorithm 1 line 3, Table 4] The implemented criterion D_TV(P||\hat P) > C·D_TV(π_t||π_ω) is not the criterion derived from Theorem 1. The theorem gives E_\hatP ≥ C1 E_π − C2 with C1 and C2 depending on γ, K, r_max, E_max, and Γ, and the policy mismatch E_π is defined relative to the optimal policy \hatπ, whereas the implementation compares the current policy with the pretrained policy and replaces the affine threshold by a multiplicative scalar C. The paper explicitly calls this a simplification, but no experiment verifies that the estimated TV distances track E_\hatP and E_π. Table 4 shows that the results are highly sensitive to C, with ROM03 SR dropping from 0.82 at C=5 to 0.45 at C=100, and C is swept on the same four benchmark tasks used for the main results. Without a theory-derived or held-out choice of C, or at least a direct comparison of the estimated mismatches with the update decisions made by AdaWM, the reported gains may reflect tuning of this free parameter rather than validation of the theoretical criterion.
  3. [Appendix A, Lemma 1, Lemma 2, Theorem 1] The proof of Theorem 1 relies on assumptions that are neither verified for the CARLA setting nor fully consistent with the distribution-shift story. Lemma 2 assumes the training and testing datasets are drawn from the same distribution, while the paragraph following it states that the input distribution is assumed uniform; neither condition is checked. Several quantities in Lemma 1 (E_x, N_2, h, B_x, E_\hatP, E_P) are not defined in the lemma statement, and the bound contains the expression (E_\hatP − E_P) without any argument that it is nonnegative. These gaps do not necessarily invalidate the qualitative message of the paper, but they imply that the theorem and the derived C1/C2 threshold should be treated as heuristic motivation rather than as a rigorous foundation for the algorithm.
minor comments (6)
  1. [Abstract, §1, Appendix G] There are several typos: "cross various new tasks" should be "across various new tasks," "promsing" should be "promising," "respetively" should be "respectively," and "trails" in §3.1 should be "trials."
  2. [§2.1 and Appendix B] The notation P and \hat P is used inconsistently: in the initial setup WM_ϕ(P) is the pretrained model with transition P and WM_ϕ(\hat P) is the new-task model, while in Theorem 1 and its proof \hat P denotes the true transition and P denotes the predicted one. Please standardize the notation.
  3. [Algorithm 1, lines 5–7] The update expressions "B′ ← B" and "Δ′ ← Δ" are confusing because they appear to leave the parameters unchanged; please spell out that B (respectively Δ) is optimized and then used to form ϕ = (B′Z)⊤Φ (respectively ω = (Δ′)⊤Ω).
  4. [Tables 2–4] The paper should state explicitly which value of C is used for the main results and whether that value was chosen before evaluating on the test tasks; currently Table 4 reads like a post-hoc sweep on the same benchmark.
  5. [Appendix C] The reward weights w1–w6 are not given numerically, so the reward design is not fully reproducible despite the reproducibility statement; please include the values or a reference to the exact implementation.
  6. [Figures 4 and 5] Figures 4 and 5 use different step ranges on the x-axis; sharing a consistent axis would make the comparisons easier to read.

Circularity Check

1 steps flagged · score 5.0 of 10

The adaptive threshold C is swept on the same four benchmark tasks whose AdaWM results are then reported, so the 'dominating mismatch' conclusion is partially fit to the benchmark.

  1. fitted input called prediction [Algorithm 1 (lines 3-7) and Section 3.2, Table 4]
    "Mismatch Identification: ... if DTV(P | ˆP ) > C· DTV(πt|πω) then Update dynamics model ... else Update policy. ... In Table 4, we study the effect of different parameter C on four tasks (ROM03, RTD12, LTM03, LTD03) in terms of TTC and SR. ... the results demonstrate that AdaWM performs well across a wide range of C values (between 2 and 50)."

    The entire 'mismatch identification' mechanism reduces to a threshold comparison governed by the free scalar C: Algorithm 1 updates the dynamics model exactly when DTV(P|P_hat) > C·DTV(pi_t|pi_omega). The paper asserts that 'C is a function of C1 and C2', but the theory-derived constants C1 and C2 are never evaluated; instead, Section 3.2 sweeps C on the exact four evaluation tasks (ROM03, RTD12, LTM03, LTD03). The AdaWM rows in Tables 2 and 3 coincide with the C=5 row of Table 4, i.e., the threshold that maximizes the reported TTC/SR on those same tasks.

full rationale

The theoretical bound in Theorem 1 is a genuine derivation and is not circular by itself: it upper-bounds the performance gap in terms of dynamics-model and policy mismatch terms, and the constants C1 and C2 follow algebraically from comparing the two additive terms of the bound. There is also no load-bearing self-citation chain or imported uniqueness theorem; the paper's citations to Janner et al., LoRA/NoLa, and DreamerV3 are standard external support. The main circularity is in the implementation of the decision rule: the adaptive choice of whether to update the dynamics model or the policy is controlled by a single threshold C, and Table 4 tunes C on the same four CARLA tasks whose AdaWM results are later reported as evidence that mismatch identification works. Because the paper neither derives C from C1/C2 nor holds out a validation set, the 'confirming the importance of identifying and addressing the dominating mismatch' claim is partly an artifact of in-sample threshold selection. The severity is moderated by the fact that a range of C values (2-10) also outperforms the baselines, so the central conclusion is not wholly forced; however, the reported headline numbers still come from the benchmark-tuned choice C=5. The comparison against Model-only, Policy-only, and Model+Policy baselines is a legitimate experimental design, though it does not fully control for low-rank update machinery; that is a correctness/control concern rather than circularity. Overall, the paper has partial circularity of the fitted-parameter type, but not a fully self-definitional derivation.

Assumptions & free parameters 2 free parameters · 5 assumptions · 0 invented entities

The central claim rests on a theory with several unverified assumptions and an implementation with one fitted threshold C. No invented entities are introduced. The biggest unaccounted input is C, which is tuned on the evaluation tasks and meaningfully changes results.

free parameters (2)
  • Threshold C = 5 (best in Table 4; C=10 gives slightly higher TTC on ROM03 but lower SR)
    The update rule uses D_TV(P|P_hat) > C * D_TV(pi|pi_hat). C is not derived from the theorem; it is swept in Table 4 and the final results correspond to a favorable value chosen from the same evaluation tasks.
  • Reward weights w1 to w6 = not reported
    The reward is defined as a weighted sum of six factors in Appendix C, with no values given. These weights shape the learned policy and are hand-selected, but they are not the central claim.
assumptions (5)
  • standard math Assumptions 1-3: bounded weight matrices, bounded action input, Lipschitz policy and reward function.
    These assumptions are stated before Theorem 1 and are used to propagate prediction errors through the RNN and to bound the performance gap.
  • domain assumption Training and testing distributions for the pretrained RNN are the same, and the input distribution is uniform in the proof.
    Appendix A invokes a PAC generalization bound from Wu et al. under identical train/test distribution and assumes a uniform input distribution; neither is verified for the CARLA pretraining setup.
  • domain assumption Expected TV distance between true and predicted dynamics is bounded by E_hatP, and policy shift E_pi is a meaningful bounded quantity.
    These are unmeasured theoretical quantities. The algorithm approximates them by empirical TV distances without a consistency or sample-complexity analysis.
  • domain assumption The initial state distributions of pretraining and new tasks are the same.
    This is assumed in Appendix A when bounding the state visitation difference between tasks, but the CARLA tasks use different start points and routes.
  • ad hoc to paper Empirical TV distances computed from replay and online samples are reliable estimators of the theoretical mismatches.
    Algorithm 1 line 3 computes D_TV from samples; no proof is given that these estimates are accurate enough to make the correct update decision.

how reviews work

0 comments
Cite this review

Pith. "Pith review of AdaWM: Adaptive World Model based Planning for Autonomous Driving." pith.science (2026). https://pith.science/paper/E6YJ66DA

@misc{pith2026250113072,
  author       = {Pith},
  title        = {Pith review of: AdaWM: Adaptive World Model based Planning for Autonomous Driving},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/E6YJ66DA}},
  note         = {Machine review of arXiv:2501.13072}
}
read the original abstract

World model based reinforcement learning (RL) has emerged as a promising approach for autonomous driving, which learns a latent dynamics model and uses it to train a planning policy. To speed up the learning process, the pretrain-finetune paradigm is often used, where online RL is initialized by a pretrained model and a policy learned offline. However, naively performing such initialization in RL may result in dramatic performance degradation during the online interactions in the new task. To tackle this challenge, we first analyze the performance degradation and identify two primary root causes therein: the mismatch of the planning policy and the mismatch of the dynamics model, due to distribution shift. We further analyze the effects of these factors on performance degradation during finetuning, and our findings reveal that the choice of finetuning strategies plays a pivotal role in mitigating these effects. We then introduce AdaWM, an Adaptive World Model based planning method, featuring two key steps: (a) mismatch identification, which quantifies the mismatches and informs the finetuning strategy, and (b) alignment-driven finetuning, which selectively updates either the policy or the model as needed using efficient low-rank updates. Extensive experiments on the challenging CARLA driving tasks demonstrate that AdaWM significantly improves the finetuning process, resulting in more robust and efficient performance in autonomous driving systems.

Figures

Figures reproduced from arXiv: 2501.13072 by the authors.

Figure 1
Figure 1. Performance comparison of different finetuning strategies in the left turn with moderate traffic flow task. A Motivating Example. Consider an agent pretrained to make right turns at a four-way intersection, later fine￾tuned for left turns under similar traffic conditions. We evaluate three finetuning strategies: alternate finetuning (Model+Policy), model-only finetuning, and policy-only finetuning. As shown in [PIT… view at source ↗
Figure 2
Figure 2. A sketch of adaptive world model based planning (AdaWM): During pretraining, a dy [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Learning curves of different finetuning strategies in four evaluation tasks. [PITH_FULL_IMAGE:figures/full_fig_p009_3.png] view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: It can be seen from Figure 4a that model-only finetuning often leads to a deterioration in [PITH_FULL_IMAGE:figures/full_fig_p009_4.png]
Figure 4
Figure 4. Figure 4: The mismatches of the dynamics model and policy during the finetuning. [PITH_FULL_IMAGE:figures/full_fig_p010_4.png]
Figure 5
Figure 5. Figure 5: The mismatches of the dynamics model and policy with different value of [PITH_FULL_IMAGE:figures/full_fig_p010_5.png]
Figure 6
Figure 6. Figure 6: Prediction results for 65 time steps in AdaWM. [PITH_FULL_IMAGE:figures/full_fig_p022_6.png]
Figure 7
Figure 7. Figure 7: Prediction results for 65 time steps with alternate finetuning mechanism. [PITH_FULL_IMAGE:figures/full_fig_p022_7.png]
Figure 8
Figure 8. Figure 8: Prediction results for 65 time steps with only model finetuning. [PITH_FULL_IMAGE:figures/full_fig_p022_8.png]
Figure 9
Figure 9. Figure 9: Prediction results for 65 time steps with only policy finetuning. [PITH_FULL_IMAGE:figures/full_fig_p023_9.png]
Figure 10
Figure 10. Figure 10: Prediction results for 65 time steps without finetuning. [PITH_FULL_IMAGE:figures/full_fig_p023_10.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Reinforced Refinement with Self-Aware Expansion for End-to-End Autonomous Driving

    cs.RO 2025-06 reject novelty 6.0 of 10

    R2SE refines pretrained end-to-end driving policies on hard cases via residual LoRA reinforcement learning and switches between specialist and generalist policies using GPD-based uncertainty.

Reference graph

Works this paper leans on

26 extracted references · 11 canonical work pages · cited by 1 Pith paper

  1. [1]

    Deep learning using rectified linear units (relu)

    Abien Fred Agarap. Deep learning using rectified linear units (relu). arXiv preprint arXiv:1803.08375,

  2. [2]

    KX i=1 γir(zi, ai) + Q(zK, aK) # − Ez∼ ˆP ,a∼πω,WMϕ

    Assume the training and testing datasets are drawn from the same distribution. Then with probability at least 1 − σ, the generalization error in terms of the expected loss function has the upper bound as follows, E[f (xi,t+k − ¯xi,t+k] ≤ ln + 3 s log 2 δ 2n + O Lrdy dM Ba(1 + p 2 log(2)k)√n ! In particular, the results in Lemma 2 considers the least squar...

  3. [5]

    Return normalization limit L 1 Return normalization decay — 0.99 Actor entropy scale η 3 · 10−4 Learning rate — 3 · 10−5 Adam epsilon ϵ 10−5 Gradient clipping — 100 Table 6: Dreamer v3 hyper parameters Hafner et al. (2023). World Model Training. The world model is implemented as a Recurrent State-Space Model (RSSM) Hafner et al. (2019

  4. [6]

    The BEV representation can be learnt by using algorithms such as BevFusion Liu et al

    Learning BEV Representation. The BEV representation can be learnt by using algorithms such as BevFusion Liu et al. (2023), which is capable of unifying the cameras, LiDAR, Radar data into a BEV representation space. In our experiment, we leverage the privileged information provided by CARLA Dosovitskiy et al. (2017), such as location information and map t...

  5. [9]

    Lora: Low-rank adaptation of large language models

    Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. Lora: Low-rank adaptation of large language models. arXiv preprint arXiv:2106.09685,

  6. [10]

    Bench2drive: To- wards multi-ability benchmarking of closed-loop end-to-end autonomous driving

    Xiaosong Jia, Zhenjie Yang, Qifeng Li, Zhiyuan Zhang, and Junchi Yan. Bench2drive: To- wards multi-ability benchmarking of closed-loop end-to-end autonomous driving. arXiv preprint arXiv:2406.03877,

  7. [12]

    Think2drive: Efficient reinforcement learning by thinking in latent world model for quasi-realistic autonomous driving (in carla-v2)

    12 Published as a conference paper at ICLR 2025 Qifeng Li, Xiaosong Jia, Shaobo Wang, and Junchi Yan. Think2drive: Efficient reinforcement learning by thinking in latent world model for quasi-realistic autonomous driving (in carla-v2). arXiv preprint arXiv:2402.16720,

  8. [14]

    Bevfusion: Multi-task multi-sensor fusion with unified bird’s-eye view representation

    Zhijian Liu, Haotian Tang, Alexander Amini, Xinyu Yang, Huizi Mao, Daniela L Rus, and Song Han. Bevfusion: Multi-task multi-sensor fusion with unified bird’s-eye view representation. In 2023 IEEE international conference on robotics and automation (ICRA) , pp. 2774–2781. IEEE,

Show all 26 references
  1. [15]

    Planning with adaptive world models for autonomous driving

    Arun Balajee Vasudevan, Neehar Peri, Jeff Schneider, and Deva Ramanan. Planning with adaptive world models for autonomous driving. arXiv preprint arXiv:2406.10714,

  2. [16]

    Benchmarking model-based reinforce- ment learning

    Tingwu Wang, Xuchan Bao, Ignasi Clavera, Jerrick Hoang, Yeming Wen, Eric Langlois, Shunshi Zhang, Guodong Zhang, Pieter Abbeel, and Jimmy Ba. Benchmarking model-based reinforce- ment learning. arXiv preprint arXiv:1907.02057,

  3. [17]

    Drivedreamer: Towards real-world-driven world models for autonomous driving.arXiv preprint arXiv:2309.09777,

    Xiaofeng Wang, Zheng Zhu, Guan Huang, Xinze Chen, and Jiwen Lu. Drivedreamer: Towards real-world-driven world models for autonomous driving.arXiv preprint arXiv:2309.09777,

  4. [18]

    Analyzing and overcoming degradation in warm- start reinforcement learning

    Benjamin Wexler, Elad Sarafian, and Sarit Kraus. Analyzing and overcoming degradation in warm- start reinforcement learning. In 2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pp. 4048–4055. IEEE,

  5. [19]

    Statistical machine learning in model predictive control of nonlinear processes

    Zhe Wu, David Rincon, Quanquan Gu, and Panagiotis D Christofides. Statistical machine learning in model predictive control of nonlinear processes. Mathematics, 9(16):1912,

  6. [20]

    13 Published as a conference paper at ICLR 2025 Appendix A P ROOF OF UPPER BOUND OF PREDICTION ERROR We first present the results on the upper bound of the prediction error in Lemma 1 below. For brevity, we denote M = BV BU (BW )k−1 BW −1 , Ψk(δ, n) = ln +3 r log( 2 δ ) 2n +O ...

  7. [22]

    Section 2.1)

    B.1 D ERIVATION OF C1 AND C2 Next, we derive the parameter C1 and C2 in AdaWM (ref. Section 2.1). The RHS of the inequality in Theorem 1 can be divided into two parts, i.e., γK Emax 1 − γK + Γ 2γE ˆP 1 − γK + Γ 4rmaxEπ 1 − γ + 4γEπ 1 − γK , where the first part is relevant to ...

  8. [26]

    to learn the environment dynamics, encoder, reward, continuity and encoder-decoder. We list the equations from the RSSM mode as follows: RSSM    Sequence model: ht = fϕ(ht−1, zt−1, at−1) Encoder: zt ∼ qϕ(zt|ht, xt) Dynamics predictor: ˆzt ∼ pϕ(ˆzt|ht) Reward predictor: ˆrt ...

  9. [128]

    At each time step, the agent selects both acceler- ation and steering angle

    In our experiments, we use a discrete action space. At each time step, the agent selects both acceler- ation and steering angle. The available choices for acceleration are [−2, 0, 2], and for steering angle are [−0.6, −0.2, 0, 0.2, 0.6]. We design the reward as the weighted su...

  10. [2010]

    End- to-end autonomous driving: Challenges and frontiers

    Li Chen, Penghao Wu, Kashyap Chitta, Bernhard Jaeger, Andreas Geiger, and Hongyang Li. End- to-end autonomous driving: Challenges and frontiers. arXiv preprint arXiv:2306.16927,

  11. [2016]

    Auto-encoding variational bayes

    Diederik P Kingma. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114,

  12. [2018]

    Autonomous driving in urban environments: approaches, lessons and challenges

    Mark Campbell, Magnus Egerstedt, Jonathan P How, and Richard M Murray. Autonomous driving in urban environments: approaches, lessons and challenges. Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences, 368(1928):4649–4672,

  13. [2019]

    Mastering atari with dis- crete world models

    Danijar Hafner, Timothy Lillicrap, Mohammad Norouzi, and Jimmy Ba. Mastering atari with dis- crete world models. arXiv preprint arXiv:2010.02193,

  14. [2020]

    Mastering diverse domains through world models

    Danijar Hafner, Jurgis Pasukonis, Jimmy Ba, and Timothy Lillicrap. Mastering diverse domains through world models. arXiv preprint arXiv:2301.04104,

  15. [2021]

    Towards out-of-distribution generalization: A survey

    Jiashuo Liu, Zheyan Shen, Yue He, Xingxuan Zhang, Renzhe Xu, Han Yu, and Peng Cui. Towards out-of-distribution generalization: A survey. arXiv preprint arXiv:2108.13624,

  16. [2022]

    Chauffeurnet: Learning to drive by imitating the best and synthesizing the worst

    Mayank Bansal, Alex Krizhevsky, and Abhijit Ogale. Chauffeurnet: Learning to drive by imitating the best and synthesizing the worst. arXiv preprint arXiv:1812.03079,

  17. [2023]

    Modem: Accelerating visual model-based reinforcement learning with demonstrations

    Nicklas Hansen, Yixin Lin, Hao Su, Xiaolong Wang, Vikash Kumar, and Aravind Rajeswaran. Modem: Accelerating visual model-based reinforcement learning with demonstrations. arXiv preprint arXiv:2212.05698,

  18. [2024]

    World models

    11 Published as a conference paper at ICLR 2025 David Ha and J¨urgen Schmidhuber. World models. arXiv preprint arXiv:1803.10122,

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.