REVIEW 4 major objections 6 minor 2 cited by
Ego-centric Learning of Communicative World Models for Autonomous Driving
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read In CALL, driving agents share latent world-model states and waypoints, roughly doubling multi-agent driving performance while cutting communication to about one-fiftieth of raw data.
desk verdict A plausible and novel combination of latent sharing and prediction-error-triggered communication, but with an invalid theoretical proof and an experimental claim confounded by an unshared waypoint input. 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 load-bearing object is the communicative world model itself: a recurrent state-space model (RSSM) in which an encoder maps each agent's bird's-eye-view observation to a latent state $z_{i,t}$, a recurrent sequence model maintains a hidden state $h_{i,t}$, and the planned waypoints are encoded as a latent intention $w_{i,t}$. The triple $[z_{i,t}, h_{i,t}, w_{i,t}]$ is the unit of communication, small enough that exchanging it with nearby agents costs roughly one-fiftieth of the bandwidth of raw observations. The decision mechanism is prediction-accuracy-driven sharing: the agent compares predicted latent states and intentions from the last $K$ steps against the actual encoded values, and when the error exceeds a threshold $c$, it increases its communication range by 5 meters. The analytical machinery is the error decomposition $\epsilon_{i,t+k} = (z_{i,t+k} - \bar{z}_{i,t+k}) + (\bar{z}_{i,t+k} - \hat{z}_{i,t+k})$, which splits the multi-step prediction error into RNN generalization error and epistemic error; the epistemic part further separates into a stationary gap from the missing model state $E_x$ and a non-stationary part from the total-variation model mismatch $E_P$. Theorem 1 bounds the accumulated error over the rollout horizon $k$, and Proposition 1 converts that bound into an upper bound on the sub-optimality gap of the value function.
What would settle it
Run the 150-vehicle CARLA experiment with the fleet split between two different world-model architectures (for example, different latent dimensions), which forces the Appendix F fallback of sharing semantic BEVs instead of latent triples. If the per-step bandwidth then rises back toward the 5 MB full-observation level while the reported 100% return gain over the local-observation baseline shrinks toward zero, the claim that lightweight latent sharing delivers the performance gain would be refuted.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that a world model's latent space can serve directly as a communication channel. Because the recurrent state-space model compresses each agent's bird's-eye-view observation into a small model state $x_{i,t} := [z_{i,t}, h_{i,t}]$ (latent state plus recurrent hidden state) and an intention $w_{i,t}$ (the planned waypoints), agents that share the same encoder-decoder architecture can exchange the triple $[z_{i,t}, h_{i,t}, w_{i,t}]$ and decode one another's states with their local decoders. CALL makes the sharing selective: each agent tracks its $K$-step prediction error $\epsilon_{i,t+k} := \|\hat{X}_{i,t} - X_{i,t}\|$ between predicted and actual latent states and intentions, and expands its communication range by 5 meters only when the error exceeds a threshold $c$. The paper reports that this yields roughly a 100% return improvement over the local-observation world-model baseline, faster learning than the full-observation baseline, and that intention sharing carries most of the benefit — ablations show waypoint sharing roughly doubles performance over latent-state sharing alone. The theoretical core is a decomposition of the multi-step lookahead prediction error into an RNN generalization term, an epistemic term from the missing model state (partial observability), and a total-variation term (non-stationarity); Theorem 1 bounds the accumulated error over the horizon, and Proposition 1 shows that a sufficiently small prediction error makes the shared information locally sufficient, bounding the sub-optimality gap in the ego agent's value function.
Load-bearing premise
The experiments assume all agents share the same encoder-decoder world model, so one vehicle can directly decode another's latent state (stated in Section 4); if world models differ, the paper's own Appendix F fallback is sharing semantic BEVs, which are far larger and erode the roughly one-fiftieth communication advantage that the main results depend on.
Editorial extensions
If this is right
- If the roughly 100% return gain replicates, partial observability — not reward design or control difficulty — is the dominant bottleneck in the tested CARLA trajectory-planning regime, since decoding neighbors' latent states restores most of the missing information.
- The one-fiftieth bandwidth figure makes vehicle-to-vehicle latent exchange viable under realistic wireless limits; the 230-agent measurement at about 0.106 MB per 0.1 seconds gives a concrete operating point for scaling.
- Because sharing intentions (waypoints) alone roughly doubles performance over sharing latent states alone, future cooperative-driving stacks should prioritize exchanging planned trajectories, not only observations.
- The adaptive range rule has a wide safe operating window (the paper reports good performance for thresholds $c \in [10, 80]$), so the method does not require careful tuning of the communication trigger.
- The theory predicts prediction error accumulates with rollout horizon $k$, so CALL's benefit should grow on tasks that require longer lookahead; the paper's 30-step prediction comparisons are consistent with that prediction.
Reading between the lines
- Beyond the paper: the prediction-error rule does not actually require a generative decoder — any agent with a one-step differentiable latent predictor could run the same expand-when-uncertain protocol, so the sharing mechanism could transfer to model-free communication schemes the paper does not consider.
- Beyond the paper: the homogeneity assumption is the fragile point, and a fix the paper leaves implicit is learning a small latent-to-latent translation map between heterogeneous world models, which would preserve the bandwidth advantage that the semantic-BEV fallback of Appendix F loses.
- Beyond the paper: because full observation learns more slowly than CALL, the protocol implicitly acts as an information filter; a testable corollary is that in denser traffic the optimal communication range should stay small while the value of sharing intentions grows, which could be checked by sweeping vehicle density in CARLA.
- Beyond the paper: the waypoint-ablation results suggest a cheaper variant — sharing only intentions and not latent states — might capture most of the gain at even lower bandwidth; the paper reports the components but never evaluates that combination.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes CALL, a communicative world model for ego-centric multi-agent reinforcement learning in autonomous driving. Each agent learns a latent world model whose latent state and planned intentions (waypoints) are shared with neighboring agents, with the communication range adapted based on prediction error. The authors derive an upper bound on multi-step prediction error (Theorem 1) and a bound on the value-function sub-optimality gap (Proposition 1), and report CARLA experiments with 150 and 230/250 agents, claiming around 100% performance improvement over a local-observation DreamerV3 baseline and bandwidth of 0.106 MB versus 5.417 MB for full observation.
Significance. If the claims were established, CALL would offer a practically useful combination of world-model generalization and low-bandwidth communication for cooperative driving, with clear application value. The paper has concrete strengths: extensive CARLA experiments, multiple ablation studies, prediction visualizations, and an intent to release code. However, the theoretical derivation of Theorem 1 is invalid as written, the information-sharing gain is derived in a definitional rather than substantive way, and the headline experimental comparison omits a key control (waypoint input). These issues are load-bearing: the claimed contribution is not currently supported.
major comments (4)
- [Appendix B, Eqs. (7)–(10)] The proof of Theorem 1 treats the weight matrices W, U, V, A as scalar coefficients. For example, Eq. (8) writes (LhLzV W + LzV A)ϵ + LhLzV U Laϵ, but V W and V A are matrices, so the displayed inequality does not follow from Lipschitz continuity unless norms are taken and the recursion is formulated in a normed space. The subsequent recursion with N := LhLzV U La then uses powers N^h of a matrix and mixes scalars and matrices in the final bound; the argument is therefore not a valid scalar error recursion. This invalidates Theorem 1 as stated. The garbled definition of M in Section 3.1 ('M = BV BU (BW )k−1 BW −1') and the undefined quantity h in the term 2hBxEP reinforce that the expression was not carefully checked.
- [Section 3.1] The 'Prediction performance gain from information sharing' paragraph is definitional rather than derivational. It states that after acquiring shared information, the error terms Ex and EP are reduced by εx and εp, and concludes that the prediction error bound decreases by terms proportional to those reductions. Since Theorem 1 already has Ex and EP as arguments, this merely restates the theorem under an assumption of the conclusion. Proposition 1 is likewise a generic Lipschitz value-difference bound: it says that if the prediction error under a given information set is small, then the value gap is small. This is a standard template and does not establish that CALL's communication mechanism produces the required error reduction.
- [Section 4, Figs. 2(a) and 4(b)] The central empirical claim confounds two changes at once. CALL receives planned waypoints w_i,t as part of its input/action interface, while the 'Local obs.' baseline (DreamerV3) does not. Figure 4(b) shows that adding waypoints to a purely local observation baseline substantially improves learning even without any communication. No curve compares CALL against 'Local obs. + WP', so the reported 'around 100% performance improvement' in Figure 2(a) cannot be attributed to information sharing, prediction-error-driven communication, or the world model; it may be entirely a waypoint-input effect.
- [Section 4 and Appendix F] The lightweight-communication claim is not established for the general setting that the paper advertises. The 0.106 MB versus 5.417 MB bandwidth comparison is reported only for the homogeneous case where agents share the same encoder-decoder and can directly decode each other's latent states. Appendix F states that in the heterogeneous case agents instead share semantic BEVs, which are substantially larger, and no bandwidth or performance figures are given for that case. Moreover, no performance-matched communication baseline is provided: the bandwidth comparison does not show that the two settings operate at equal task performance, so the '1/50th bandwidth' conclusion is not supported by the experiments as reported.
minor comments (6)
- [Section 3.1] The definition of M is incomplete and should be corrected or removed: it reads 'M = BV BU (BW )k−1 BW −1' with no closing denominator.
- [Theorem 1] The quantity h in the term 2hBxEP is not defined, and the notation Ψh(δ, n) in Theorem 1 is inconsistent with Ψk(δ, n) used in the proof.
- [Appendix E.4] The manuscript states 250 vehicles in Appendix E.4 but 230 vehicles in Section 4; the counts should be reconciled.
- [Table 6 and Appendix E.4] The term 'LSI' is used for the CALL method in several places, whereas the main text uses 'CALL'; this inconsistency makes the ablation terminology hard to follow.
- [Figure 5] The caption refers to 'WM-MBRL' although the proposed method is CALL; the name should be updated or removed.
- [Reproducibility statement] The statement promises that source code and data 'will be made publicly available upon publication,' but no repository link or identifier is provided in the manuscript.
Circularity Check
CALL's theorized 'prediction gain from information sharing' is the assumed reduction of the error terms Ex and EP scaled by constants, so the headline theoretical benefit is definitional; the empirical 100%-gain claim is additionally confounded by a waypoint-input difference rather than isolating communication.
-
self definitional
[Section 3.1, 'Prediction performance gain from information sharing' (immediately after Theorem 1)]
"More concretely, assume that after acquiring the information {zj,t, hj,t, wj,t}, j ∈ Gt ⊆ N, the error terms Ex and EP are reduced by εx, εp, respectively, then we can obtain that the prediction error can be improved by at least Pk j=1 N j 1 1/δ(N2εx + 2hBxεP) (ref. Theorem 1)."
Here Ex and EP are, by definition in Theorem 1, the model-state gap and transition-model error that information sharing is supposed to reduce. The paper's claimed 'gain' is therefore not derived from any CALL-specific mechanism; it is the assumed reductions εx and εp multiplied by the theorem's Lipschitz constants and 1/δ factors. The sentence 'assume ... reduced by εx, εp' already contains the claimed benefit, and the displayed formula only restates that assumption in the theorem's notation. Theorem 1 is a generic multi-step Lipschitz error-accumulation bound and supplies no estimate, bound, or mechanism showing CALL actually achieves reductions εx and εp.
full rationale
Section 3.1 contains the clearest reductive step: the 'prediction performance gain from information sharing' is the assumed reduction in Ex and EP scaled by constants from Theorem 1; it is true by construction, not a derivation. Proposition 1 is also generic (any predictor with error Emax gives the same sub-optimality bound through the Lipschitz reward and LQ constants), so it adds no CALL-specific content, although it is a valid implication rather than a circular equation. No load-bearing self-citation or uniqueness-import pattern appears: the DreamerV3 and Think2Drive baselines are external, and no cited prior work by the same authors is invoked to force the design. There is, however, a separate experimental confound that limits the central empirical claim: Section 4 compares CALL, which includes planned waypoints wi,t, against a 'Local observation only' DreamerV3 baseline that lacks waypoints, while Figure 4(b) shows 'Local obs. + WP' already improves learning without communication; no curve isolates the communication effect from the waypoint-input effect. This is a missing control and a correctness risk, not a derivation-level circularity. The homogeneous-encoder assumption in Section 4 and Appendix F also narrows the bandwidth claim. Because one headline theoretical prediction reduces to its own assumption, the circularity score is 6 (partial), not higher, since the algorithm's adaptive communication rule and the experiments are not themselves derived from that formula.
Assumptions & free parameters
free parameters (4)
- prediction accuracy threshold c =
not reported in main experiments
- communication range increment =
5 meters
- reward weights w1...w6 =
not specified
- prediction evaluation window (past K steps) =
not specified
assumptions (7)
- domain assumption Action is bounded and policy is La-Lipschitz (Assumption 1).
- domain assumption RNN weight matrices W, U, V have bounded Frobenius norms (Assumption 2).
- domain assumption Reward is Lr-Lipschitz (Assumption 3).
- domain assumption State space is compact and action space is finite (Assumption 4).
- ad hoc to paper The world model RNN is trained on n i.i.d. samples from the same distribution as testing.
- ad hoc to paper Sharing latent information reduces Ex and EP by amounts εx and εp.
- domain assumption All agents share the same encoder-decoder architecture in the experiments (homogeneous case).
Cite this review
Pith. "Pith review of Ego-centric Learning of Communicative World Models for Autonomous Driving." pith.science (2026). https://pith.science/paper/ZQLBN5SM
@misc{pith2026250608149,
author = {Pith},
title = {Pith review of: Ego-centric Learning of Communicative World Models for Autonomous Driving},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZQLBN5SM}},
note = {Machine review of arXiv:2506.08149}
}
read the original abstract
We study multi-agent reinforcement learning (MARL) for tasks in complex high-dimensional environments, such as autonomous driving. MARL is known to suffer from the \textit{partial observability} and \textit{non-stationarity} issues. To tackle these challenges, information sharing is often employed, which however faces major hurdles in practice, including overwhelming communication overhead and scalability concerns. By making use of generative AI embodied in world model together with its latent representation, we develop {\it CALL}, \underline{C}ommunic\underline{a}tive Wor\underline{l}d Mode\underline{l}, for MARL, where 1) each agent first learns its world model that encodes its state and intention into low-dimensional latent representation with smaller memory footprint, which can be shared with other agents of interest via lightweight communication; and 2) each agent carries out ego-centric learning while exploiting lightweight information sharing to enrich her world model, and then exploits its generalization capacity to improve prediction for better planning. We characterize the gain on the prediction accuracy from the information sharing and its impact on performance gap. Extensive experiments are carried out on the challenging local trajectory planning tasks in the CARLA platform to demonstrate the performance gains of using \textit{CALL}.
Figures
Figures from the paper (20 more)
Forward citations
Cited by 2 Pith papers
-
A Comprehensive Survey on World Models for Embodied AI
A unified three-axis taxonomy — functionality, temporal modeling, spatial representation — organizes the world-model literature for embodied AI.
-
GenAI-based Multi-Agent Reinforcement Learning towards Distributed Agent Intelligence: A Generative-RL Agent Perspective
A position paper claiming that generative-AI agents that model and predict multi-agent dynamics will replace today's reactive MARL approaches.
Reference graph
Works this paper leans on
-
[1]
Deep learning using rectified linear units (relu).arXiv preprint arXiv:1803.08375,
Abien Fred Agarap. Deep learning using rectified linear units (relu).arXiv preprint arXiv:1803.08375,
-
[3]
The policy π is Lπ-Lipschitz, i.e., dA(π(·|s) − π(·|s′)) ≤ LπdS(s, s′). With Assumption Assumption 3 holds, we obtain the following bound, rl − ˆrl ≤Lr(1 + Lπ)ϵt+l Qt+L − ˆQt+L ≤LQ(1 + Lπ)ϵt+L, where LQ := Lr 1−γ . Then we have the upper bound for the sub-optimality gap as, Ea h Q(st, at) − ˆQ(ot, at) i ≤Ea∼π "L−1X l=0 γlLr(1 + Lπ)ϵt+l # + γLEa∼π [LQ(1 + ...
work page 2019
-
[4]
Model-free deep reinforcement learning for urban autonomous driving
12 Jianyu Chen, Bodi Yuan, and Masayoshi Tomizuka. Model-free deep reinforcement learning for urban autonomous driving. In 2019 IEEE intelligent transportation systems conference (ITSC), pp. 2765–2771. IEEE, 2019a. Jianyu Chen, Shengbo Eben Li, and Masayoshi Tomizuka. Interpretable end-to-end urban autonomous driving with latent deep reinforcement learnin...
work page 2019
-
[5]
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...
work page 2023
-
[7]
We provide the detailed demo videos and images in the supplementary materials
Demo videos and images. We provide the detailed demo videos and images in the supplementary materials. Report of Standard Deviation in Figures. Note that all the learning curves presented in this work are smoothed by using exponential moving average with smoothing factor 0.72, with the shaded area to be the standard deviation. We use the smoothing algorit...
work page 2018
-
[8]
E.2 W ORLD MODEL TRAINING We use Dreamer v3 Hafner et al
In this section, we summarize the experiment results in the 250 vehicles systems. E.2 W ORLD MODEL TRAINING We use Dreamer v3 Hafner et al. (2023) structure, i.e., encoder-decoder, RSSM Hafner et al. (2019), to train the world model and adopt the large model for all experiments with dimension summarized in Table
work page 2023
-
[11]
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,
-
[12]
Auto-encoding variational bayes
Diederik P Kingma and Max Welling. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114,
Show all 35 references
-
[13]
Think2drive: Efficient reinforcement learning by thinking in latent world model for quasi-realistic autonomous driving (in carla-v2)
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,
-
[14]
Efficient multi-agent reinforcement learning by planning
Qihan Liu, Jianing Ye, Xiaoteng Ma, Jun Yang, Bin Liang, and Chongjie Zhang. Efficient multi-agent reinforcement learning by planning. arXiv preprint arXiv:2405.11778,
-
[15]
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,
2023
-
[16]
Trajectory planning for autonomous vehicles using hierarchical reinforcement learning
Kaleb Ben Naveed, Zhiqian Qiao, and John M Dolan. Trajectory planning for autonomous vehicles using hierarchical reinforcement learning. In 2021 IEEE International Intelligent Transportation Systems Conference (ITSC), pp. 601–606. IEEE,
2021
-
[18]
Scalable multi-agent reinforcement learning for networked systems with average reward
Guannan Qu, Yiheng Lin, Adam Wierman, and Na Li. Scalable multi-agent reinforcement learning for networked systems with average reward. Advances in Neural Information Processing Systems, 33:2074–2086,
-
[19]
Car2x-based perception in a high-level fusion architecture for cooperative perception systems
Andreas Rauch, Felix Klanner, Ralph Rasshofer, and Klaus Dietmayer. Car2x-based perception in a high-level fusion architecture for cooperative perception systems. In 2012 IEEE Intelligent Vehicles Symposium, pp. 270–275. IEEE,
2012
-
[20]
Benchmarking model-based reinforcement 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 reinforcement learning. arXiv preprint arXiv:1907.02057,
1907 arXiv
-
[21]
Leveraging world model disentanglement in value-based multi-agent reinforcement learning
Zhizun Wang and David Meger. Leveraging world model disentanglement in value-based multi-agent reinforcement learning. arXiv preprint arXiv:2309.04615,
-
[22]
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,
1912
-
[23]
An overview of multi-agent reinforcement learning from game theoretical perspective
Yaodong Yang and Jun Wang. An overview of multi-agent reinforcement learning from game theoretical perspective. arXiv preprint arXiv:2011.00583,
2011 arXiv
-
[24]
Combo: Compositional world models for embodied multi-agent cooperation
Hongxin Zhang, Zeyuan Wang, Qiushi Lyu, Zheyuan Zhang, Sunli Chen, Tianmin Shu, Yilun Du, and Chuang Gan. Combo: Compositional world models for embodied multi-agent cooperation. arXiv preprint arXiv:2404.10775,
-
[25]
Multi-agent reinforcement learning: A selective overview of theories and algorithms
Kaiqing Zhang, Zhuoran Yang, and Tamer Ba¸ sar. Multi-agent reinforcement learning: A selective overview of theories and algorithms. Handbook of reinforcement learning and control, pp. 321– 384, 2021a. Weinan Zhang, Xihuai Wang, Jian Shen, and Ming Zhou. Model-based multi-agen...
-
[27]
Chen et al
Discount factor ai,t Action chosen by agent i at time t at Joint action [a1,t, · · ·, aN,t] oi,t ∈ Ωi Local observation of agent i at time t ri,t Reward received by agent i at time t πi Policy of agent i zi,t ∈ Z Latent state representation hi,t Hidden state from RNN xi,t = [h...
2019
-
[28]
• ¯zt+k: the prediction generated by RNN if the Locally Sufficient Information (LSI) is employed as input
when using the agent’s local observation, i.e., xi,t. • ¯zt+k: the prediction generated by RNN if the Locally Sufficient Information (LSI) is employed as input. To further analyze the impact of LSI, we decompose the prediction error into two parts: (1) General- ization error i...
2023
-
[29]
L−1X l=0 γlr(st+l, at+l, a′ t+l) + γLQt−1(st+L, at+L, a′ t+L) # − Ea∼π
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 (zi,t+k − ¯zi,t+k] ≤ ln + 3 s log 2 δ 2n + O Lrdy dM Ba(1 + ...
2021
-
[34]
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 5: Dreamer v3 hyper parameters Hafner et al. (2023). World Model Training.The world model is implemented a...
2023
-
[35]
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 ...
2023
-
[1991]
The dynamics of reinforcement learning in cooperative multiagent systems
Caroline Claus and Craig Boutilier. The dynamics of reinforcement learning in cooperative multiagent systems. AAAI/IAAI, 1998(746-752):2,
1998
-
[2007]
A R ELATED WORK Model-based MARL
17 Appendix. A R ELATED WORK Model-based MARL. Model based RL in single-agent setting has shown promising results in both theoretical analysis and practical experiments, especially in terms of the sampling efficiency Moerland et al. (2023); Yarats et al. (2021); Kaiser et al. ...
2023
-
[2008]
Independent learning in stochastic games
Asuman Ozdaglar, Muhammed O Sayin, and Kaiqing Zhang. Independent learning in stochastic games. arXiv preprint arXiv:2111.11743,
-
[2009]
Is independent learning all you need in the starcraft multi-agent challenge? arXiv preprint arXiv:2011.09533,
Christian Schroeder de Witt, Tarun Gupta, Denys Makoviichuk, Viktor Makoviychuk, Philip HS Torr, Mingfei Sun, and Shimon Whiteson. Is independent learning all you need in the starcraft multi-agent challenge? arXiv preprint arXiv:2011.09533,
2011 arXiv
- [2016]
-
[2018]
Deepmind lab
Charles Beattie, Joel Z Leibo, Denis Teplyashin, Tom Ward, Marcus Wainwright, Heinrich Küttler, Andrew Lefrancq, Simon Green, Víctor Valdés, Amir Sadik, et al. Deepmind lab. arXiv preprint arXiv:1612.03801,
-
[2019]
Mastering atari with discrete world models
Danijar Hafner, Timothy Lillicrap, Mohammad Norouzi, and Jimmy Ba. Mastering atari with discrete world models. arXiv preprint arXiv:2010.02193,
2010 arXiv
-
[2020]
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,
-
[2021]
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,
-
[2023]
Cooper: Cooperative perception for connected autonomous vehicles based on 3d point clouds
Qi Chen, Sihai Tang, Qing Yang, and Song Fu. Cooper: Cooperative perception for connected autonomous vehicles based on 3d point clouds. In 2019 IEEE 39th International Conference on Distributed Computing Systems (ICDCS), pp. 514–524. IEEE, 2019b. Valliappa Chockalingam, Tegg T...
2019
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.