REVIEW 4 major objections 4 minor 1 cited by
Multi-Objective Reinforcement Learning for Adaptable Personalized Autonomous Driving
T0 review · 4 major / 4 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read A single trained policy can switch a vision-based driving agent's style at runtime, no retraining required.
desk verdict Solid first application of preference-driven MORL to vision-based end-to-end driving, but the 'dynamic adaptation' claim is not actually tested—every episode fixes the preference vector. 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 mechanism is the preference-conditioned critic of the PD-MORL algorithm, with two ingredients that make one policy span all preferences. First, a preference interpolator $I(\lambda) = \lambda^p$ projects the user vector into a normalized latent space, and an angle loss $L_{\text{angle}}(\lambda_p, Q)$ penalizes directional mismatch between the projected preference and the critic's Q-vector, so the critic learns which behaviors the preference points to. Second, preference-aware hindsight experience replay resamples stored transitions with alternative preference vectors, so the policy sees every preference region during training. Preferences enter the update through element-wise multiplication $\lambda \odot Q_j$. Around this, the paper wraps a five-dimensional reward vector: the first dimension is a static core reward for collision avoidance, lane keeping, and route progress, and the other four are the style rewards, which lets preference modulation happen on top of a fixed safety and navigation base.
What would settle it
A concrete check would be to run the trained agent on an unseen map of the same simulator with identical traffic seeds under comfort weight 0 versus 1; if mean jerk no longer drops significantly at the high comfort setting, while route completion remains unchanged, the preference adaptation fails to generalize beyond the training towns. A sharper version is a forced-choice video study: if human raters cannot distinguish high-aggressiveness from high-comfort runs at better than chance, the behavior changes are artifacts of the reward shaper rather than perceived driving style.
Extended reading notes
Core claim
The central discovery is that a preference-conditioned multi-objective reinforcement learning agent, trained once on a five-dimensional reward vector, learns a single policy that covers the entire continuous preference space rather than one operating point. At evaluation, the user's four preference weights are part of the state, the actor-critic acts accordingly, and the resulting behavior shifts in the intended directions: the reported differences are statistically significant, with speed weight raising mean velocity, comfort weight lowering mean jerk, and aggressiveness weight raising acceleration and yaw rate, while core driving metrics remain intact. The best configuration, which uses semantic-segmentation input and a truncated ResNet-18 encoder, attains a Driving Score of 42±17, route completion of 57±16 percent, and Preference Alignment of 11.3 degrees, indicating that the critic's Q-vector points close to the user's preference direction. In the paper's own terms, this is the first demonstration of preference-driven MORL applied to vision-based end-to-end autonomous driving.
Load-bearing premise
The load-bearing assumption is that the hand-written reward terms for aggressiveness, comfort, speed, and efficiency faithfully capture what humans mean by those driving styles; if users' comfort or sportiness is not reflected in weighted jerk, throttle variability, and yaw rate, the demonstrated behavioral changes do not amount to personalization.
Editorial extensions
If this is right
- A passenger or route planner can change the preference weights mid-journey and the same policy will change its driving style, with no retraining and no swap to a different model.
- A single model trained once on the preference space can serve many users with differing tastes, avoiding the need to store or train one policy per style.
- Because each style objective is tied to concrete measurable behavior, an operator can audit the personalization: higher comfort should visibly lower jerk, higher speed should raise velocity, and higher aggressiveness should raise yaw rate.
- The reward decomposition into a static core plus dynamic preferences means the safety-critical parts of driving are not re-negotiated when the style changes, which is what the low collision and lane-invasion rates support.
Reading between the lines
- The current evidence for personalization is measured with the same reward terms the training optimizes; a forced-choice human study comparing recorded runs would test whether passengers actually perceive the intended style differences.
- Because the policy responds across a continuous weight interval, one could define a context scheduler that maps road type or traffic density to preference weights and switches automatically segment by segment; the paper does not evaluate that use.
- A natural extension is to learn the preference vector itself from sparse user feedback, since the policy already parameterizes the full preference manifold and only the mapping from user to weights is missing.
- The Preference Alignment angle, which measures how well the critic's Q-values point along the user preference, could serve as a general diagnostic in other multi-objective control tasks beyond driving.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes a preference-driven multi-objective reinforcement learning (PD-MORL) agent for end-to-end, vision-based autonomous driving in CARLA. Preferences over aggressiveness, comfort, speed, and efficiency are encoded as a four-dimensional weight vector that conditions a single TD3-based policy, trained with an angle loss and hindsight experience replay. The evaluation has two parts: a 'preference reflection' analysis showing that varying a preference weight shifts mean velocity, acceleration, and jerk in the expected directions, and an ablation over visual encoders and input modalities reporting driving and preference metrics. The paper claims runtime adaptation to changing preferences without retraining.
Significance. The contribution is potentially useful: continuous preference conditioning in a high-dimensional, vision-based driving task with code release is a timely extension of PD-MORL, and the use of statistical tests for behavioral shifts is a positive feature. However, the evidence as presented supports preference-conditioned behavior under fixed per-episode preferences rather than true runtime adaptation during an episode, and the preference-related metrics are constructed from the same reward and Q-values that training optimizes. The significance of the personalization claim therefore depends on additional evidence.
major comments (4)
- [III-E, IV-B, Fig. 4] All experiments fix the preference vector for the entire episode: training samples lambda once at episode start, and Figure 4's x-axis is the fixed sampled weight. No experiment changes lambda mid-episode, and the HER mechanism relabels experiences with alternative constant vectors rather than exposing the policy to within-episode switches. Since lambda is part of the state, the policy could in principle react to a change, but the abstract and conclusion promise 'dynamically adapts according to changing preferences,' and this central claim is not demonstrated. Please add intra-episode switching experiments (e.g., changing lambda at a known waypoint and comparing behavior before and after the switch, including safety and route-completion metrics) or revise the claims to inter-episode adaptation.
- [III-F, III-G] Preference Score is defined as the preference-weighted return of the hand-designed reward vector, and Preference Alignment is the cosine angle between the preference vector and critic Q-values, which the angle loss explicitly aligns during training. Both metrics therefore measure consistency with the reward design, not whether the behavior matches an independent notion of the corresponding driving style. The behavioral shifts in Figure 4 largely confirm that the reward shaping influences control, which is a weaker statement than personalized driving. Please either provide an external validation (user ratings, independent style metrics, or human-driver comparisons) or clearly restrict the claims to reward-defined style objectives.
- [IV-B, Table I] The evaluation contains no comparison against a non-preference-conditioned baseline, a fixed-preference policy trained for a single weight, or an existing MORL/end-to-end driving method. The ablations show that encoder and modality choices matter, but they do not establish that the proposed single-policy approach is preferable to simpler alternatives or that it is competitive with prior work. At minimum, a fixed-preference TD3 and a single-objective baseline should be included with the same scenarios and metrics.
- [III-B, III-D] The state and critic description is internally inconsistent: the reward vector is five-dimensional and the critic outputs Q in R^5, while the preference vector is in R^4 and the paper refers to element-wise multiplication lambda \odot Q. It is not stated how the core reward is included in the scalarization or how a four-dimensional lambda multiplies a five-dimensional Q. Please specify the exact preference-conditioning mechanism, including the treatment of the core objective, or the implementation cannot be assessed.
minor comments (4)
- [Fig. 2] Figure 2 caption states a 'six-dimensional reward vector,' whereas Section III-F defines a five-dimensional vector; please reconcile.
- [Table I] The column header 'Ours Feature Extractor Ablation Vision Modality Ablation' combines three panels into one line; the table should separate the two ablations with clear panel headers.
- [III-F] The efficiency reward formula uses vmax and amax without defining their values or units; the source of these constants should be given, for example in Table II.
- [Fig. 4] Define the exact quantities plotted on the y-axes (mean per-episode velocity and acceleration magnitudes, and jerk magnitude), including the unit of jerk, and state whether the 480 episodes were collected in one scenario or across all seven evaluation scenarios.
Circularity Check
Preference Score and Preference Alignment are defined from the exact reward and Q-objectives that training optimizes, but the core behavioral-adaptation claim rests on independent velocity/acceleration/jerk measurements; circularity is partial, not central.
-
self definitional
[Section III-G, 'Driving and Preference Metrics' (Preference Score definition)]
"To assess preference adherence, we report the Preference Score, defined as PS = 1 T PT t=1 ω⊤rPrefs,t. It is calculated as the preference-weighted return over the episode, where ω is the user-defined preference vector and rPrefs,t the vector of preference-specific rewards at time t."
PS is the undiscounted average of the very preference-reward vector rPrefs whose lambda-weighted sum the PD-MORL policy is trained to maximize (Section III-B: preferences are incorporated via element-wise multiplication lambda⊙Q, with an extra angle loss). A high PS therefore mostly confirms that reward optimization succeeded on the hand-designed terms; calling it 'preference adherence' presupposes that rPrefs faithfully operationalizes human comfort, speed, aggressiveness, and efficiency. The metric is self-definitional with respect to the training objective, not an independent behavioral or user-level validation.
-
self definitional
[Section III-B (angle loss) and Section III-G (Preference Alignment definition)]
"This allows augmenting the loss function with an angle loss term Langle(λp, Q), which penalizes directional mismatches between the interpolated preference vector λp and the critic's output Q. ... Preference Alignment quantifies how well the critic's Q-values reflect the intended preferences, computed as PA = 1 N PN t=1 g(ωt,Q(st,at,ωt)), where g(·) is the cosine-based angular deviation (in degrees) between preference vector and Q-values."
PA is exactly the cosine-based angular deviation between lambda and Q-values, and the angle loss Langle(lambda_p, Q) is added to the training loss to penalize that deviation. Reporting low PA as evidence that the critic 'faithfully encodes' user preferences is therefore a check that the training objective was optimized, not a test of whether the learned behavior matches preferences. It is a convergence diagnostic that reduces by construction to the definition of the angle loss.
full rationale
The paper's central claim—that a single policy conditioned on the preference vector lambda modulates driving style—is supported by non-circular behavioral evidence. Figure 4 and the qualitative trajectories measure raw velocity, acceleration, and jerk as functions of the preference weights, with Welch t-tests; these measurements are not defined in terms of the training objective. The circularity risk is concentrated in two self-reported metrics. Preference Score (PS) is the episode-average of the exact preference reward vector the policy is trained to maximize, so high PS confirms reward optimization rather than independently validating preference satisfaction. Preference Alignment (PA) is the cosine angle between lambda and the critic Q-values, and the training loss explicitly minimizes that angle via Langle(lambda_p, Q); low PA is therefore a convergence diagnostic. Neither metric is the sole basis of the main claim, and there is no load-bearing self-citation chain: reference [28] is only related-work support, and reference [27] is an external algorithm. The paper's 'runtime ... changing preferences' wording is stronger than what the experiments show (every evaluation episode fixes lambda), but that is an evidence gap about intra-episode changes, not a circularity. Overall: partial circularity in the preference metrics, independent core behavioral evidence, so score 5.
Assumptions & free parameters
free parameters (6)
- Speed reward deviation weight δ_speed =
1.75
- Comfort constant bias β_b =
1.20
- Aggressiveness yaw-rate weight α_yaw =
0.30
- Comfort jerk penalty β_jerk =
0.03
- Preference reward auxiliary weights (α_l, α_l_acc, β_steer, β_throttle, β_v, β_long) =
α_l=0.10, α_l_acc=0.20, β_steer=0.10, β_throttle=0.05, β_v=0.30, β_long=0.30
- Core reward coefficient set (c_col, c_acc, c_brake, c_spd_high, c_idle, c_osc, c_steer, c_throttle, c_off, c_inv… =
c_col=5, c_acc=0.1, c_brake=2.75, w_type=1.7, c_spd_high=0.3, c_idle=3.5, c_osc=0.2, c_steer=0.6, c_throttle=0.4…
assumptions (5)
- domain assumption The reward hypothesis: any user preference can be adequately expressed as a weighted linear combination of scalar reward terms
- domain assumption CARLA simulator is a valid proxy for real-world driving behavior and perception
- domain assumption The PD-MORL algorithm (preference interpolator, angle loss, HER) from Basaklar et al. transfers to high-dimensional vision-based continuous control
- domain assumption Pretrained ImageNet features in a truncated ResNet18 provide useful representations for CARLA semantic segmentation images
- domain assumption Traffic rules (traffic lights, stop signs) can be ignored without invalidating the driving evaluation
Cite this review
Pith. "Pith review of Multi-Objective Reinforcement Learning for Adaptable Personalized Autonomous Driving." pith.science (2026). https://pith.science/paper/OIPKJ5NG
@misc{pith2026250505223,
author = {Pith},
title = {Pith review of: Multi-Objective Reinforcement Learning for Adaptable Personalized Autonomous Driving},
year = {2026},
howpublished = {\url{https://pith.science/paper/OIPKJ5NG}},
note = {Machine review of arXiv:2505.05223}
}
abstract
Human drivers exhibit individual preferences regarding driving style. Adapting autonomous vehicles to these preferences is essential for user trust and satisfaction. However, existing end-to-end driving approaches often rely on predefined driving styles or require continuous user feedback for adaptation, limiting their ability to support dynamic, context-dependent preferences. We propose a novel approach using multi-objective reinforcement learning (MORL) with preference-driven optimization for end-to-end autonomous driving that enables runtime adaptation to driving style preferences. Preferences are encoded as continuous weight vectors to modulate behavior along interpretable style objectives$\unicode{x2013}$including efficiency, comfort, speed, and aggressiveness$\unicode{x2013}$without requiring policy retraining. Our single-policy agent integrates vision-based perception in complex mixed-traffic scenarios and is evaluated in diverse urban environments using the CARLA simulator. Experimental results demonstrate that the agent dynamically adapts its driving behavior according to changing preferences while maintaining performance in terms of collision avoidance and route completion.
Figures
Forward citations
Cited by 1 Pith paper
-
Multi-Objective Reinforcement Learning for Tactical Decision Making for Trucks in Highway Traffic
A PPO-based multi-objective RL method learns a set of truck highway-driving policies spanning the trade-off among safety, driver time, and energy cost in SUMO simulation.
Reference graph
Works this paper leans on
-
[1]
Emma: End-to-end multimodal model for autonomous driving,
J.-J. Hwang, R. Xu, H. Lin, W.-C. Hung, J. Ji, K. Choi, D. Huang, T. He, P. Covington, B. Sapp, J. Guo, D. Anguelov, and M. Tan, “Emma: End-to-end multimodal model for autonomous driving,” arXiv:2410.23262, 2024
arXiv 2024
-
[2]
Hydra-mdp: End-to-end multimodal planning with multi-target hydra-distillation,
Z. Li, K. Li, S. Wang, S. Lan, Z. Yu, Y . Ji, Z. Li, Z. Zhu, J. Kautz, Z. Wu, et al. , “Hydra-mdp: End-to-end multimodal planning with multi-target hydra-distillation,” arXiv:2406.06978, 2024
arXiv 2024
-
[3]
G. Nativel-Fontaine, V . Lespinet-Najib, R. Cazes, C. Dupetit, C. De Gasquet, M. Chevrie, F. A ¨ıoun, and L. Ojeda, “Exploration of the acceptability of different behaviors of an autonomous vehicle in so- called conflict situations,” Accident Analysis and Prevention, vol. 186, p. 107041, 2023
work page 2023
-
[4]
Toward adaptive driving styles for automated driving with users’ trust and preferences,
M. Natarajan, A. Kumar, and T. Misu, “Toward adaptive driving styles for automated driving with users’ trust and preferences,” in 2022 17th ACM/IEEE Intl. Conf. on Human-Robot Interaction (HRI) , 2022, pp. 940–944
work page 2022
-
[5]
Dynamic preferences in multi-criteria reinforcement learning,
S. Natarajan and P. Tadepalli, “Dynamic preferences in multi-criteria reinforcement learning,” in Proc. of the 22nd Intl. Conf. on Machine Learning, ser. ICML ’05. Association for Computing Machinery, 2005, p. 601–608
work page 2005
-
[6]
User-driven adaptation: Tailoring autonomous driving systems with dynamic preferences,
M. Zhang, J. Li, N. Li, E. Kang, and K. Tei, “User-driven adaptation: Tailoring autonomous driving systems with dynamic preferences,” in Extended Abstracts of the CHI Conference on Human Factors in Computing Systems , ser. CHI EA ’24. Association for Computing Machinery, 2024
work page 2024
-
[7]
Lexicographic actor-critic deep reinforcement learning for urban autonomous driving,
H. Zhang, Y . Lin, S. Han, and K. Lv, “Lexicographic actor-critic deep reinforcement learning for urban autonomous driving,” IEEE Transactions on Vehicular Technology, vol. 72, no. 4, pp. 4308–4319, 2023
work page 2023
-
[8]
Urban driving with multi-objective deep reinforcement learning,
C. Li and K. Czarnecki, “Urban driving with multi-objective deep reinforcement learning,” in Intl. Conf. on Autonomous Agents and Multiagent Systems (AAMAS) , IFAAMAS. IFAAMAS, 2019
work page 2019
Show all 42 references
-
[9]
Multi-objective optimization for autonomous driving strategy based on deep q network,
T. Hu, B. Luo, and C. Yang, “Multi-objective optimization for autonomous driving strategy based on deep q network,” Discover Artificial Intelligence, vol. 1, p. 11, 2021
2021
-
[10]
Porf-ddpg: Learning per- sonalized autonomous driving behavior with progressively optimized reward function,
J. Chen, T. Wu, M. Shi, and W. Jiang, “Porf-ddpg: Learning per- sonalized autonomous driving behavior with progressively optimized reward function,” Sensors, vol. 20, no. 19, 2020
2020
-
[11]
Toward personalized decision making for au- tonomous vehicles: A constrained multi-objective reinforcement learn- ing technique,
X. He and C. Lv, “Toward personalized decision making for au- tonomous vehicles: A constrained multi-objective reinforcement learn- ing technique,” Transportation Research Part C Emerging Technolo- gies, vol. 156, pp. 1–17, 2023
2023
-
[12]
Navigation in urban environments amongst pedestrians using multi-objective deep reinforcement learning,
N. Deshpande, D. Vaufreydaz, and A. Spalanzani, “Navigation in urban environments amongst pedestrians using multi-objective deep reinforcement learning,” in 2021 IEEE International Intelligent Trans- portation Systems Conference (ITSC) , 2021, pp. 923–928
2021
-
[13]
Learning driving styles for autonomous vehicles from demonstration,
M. Kuderer, S. Gulati, and W. Burgard, “Learning driving styles for autonomous vehicles from demonstration,” in 2015 IEEE Intl. Conf. on Robotics and Automation (ICRA) , 2015, pp. 2641–2646
2015
-
[14]
Driving behavior modeling using naturalistic human driving data with inverse reinforcement learning,
Z. Huang, J. Wu, and C. Lv, “Driving behavior modeling using naturalistic human driving data with inverse reinforcement learning,” IEEE Transactions on Intelligent Transportation Systems , vol. 23, no. 8, pp. 10 239–10 251, 2022
2022
-
[15]
Driving with style: Inverse reinforcement learning in general-purpose planning for automated driving,
S. Rosbach, V . James, S. Grosjohann, S. Homoceanu, and S. Roth, “Driving with style: Inverse reinforcement learning in general-purpose planning for automated driving,” in 2019 IEEE/RSJ Intl. Conf. on Intelligent Robots and Systems (IROS) . IEEE, 2019, p. 2658–2665
2019
-
[16]
Driving style alignment for llm-powered driver agent,
R. Yang, X. Zhang, A. Fernandez-Laaksonen, X. Ding, and J. Gong, “Driving style alignment for llm-powered driver agent,” in 2024 IEEE/RSJ Intl. Conf. on Intelligent Robots and Systems (IROS). IEEE, 2024, pp. 11 318–11 324
2024
-
[17]
From words to wheels: Automated style-customized policy generation for autonomous driving,
X. Han, X. Chen, Z. Cai, P. Cai, M. Zhu, and X. Chu, “From words to wheels: Automated style-customized policy generation for autonomous driving,” arXiv:2409.11694, 2024
2024 arXiv
-
[18]
On-board vision-language models for personalized autonomous vehicle motion control: System design and real-world validation,
C. Cui, Z. Yang, Y . Zhou, J. Peng, S.-Y . Park, C. Zhang, Y . Ma, X. Cao, W. Ye, Y . Feng, J. H. Panchal, L. Li, Y . Chen, and Z. Wang, “On-board vision-language models for personalized autonomous vehicle motion control: System design and real-world validation,” arXiv:2411.11...
2024 arXiv
-
[19]
A review of personalization in driving behavior: Dataset, modeling, and validation,
X. Liao, Z. Zhao, M. J. Barth, A. Abdelraouf, R. Gupta, K. Han, J. Ma, and G. Wu, “A review of personalization in driving behavior: Dataset, modeling, and validation,” IEEE Transactions on Intelligent Vehicles, pp. 1–22, 2024
2024
-
[20]
Self-driving like a human driver instead of a robocar: Personalized comfortable driving experience for autonomous vehicles,
I. Bae, J. Moon, J. Jhung, H. Suk, T. Kim, H. Park, J. Cha, J. Kim, D. Kim, and S. Kim, “Self-driving like a human driver instead of a robocar: Personalized comfortable driving experience for autonomous vehicles,” in Machine Learning for Autonomous Driving Workshop, Conf. on N...
2019
-
[21]
Toward safe and personal- ized autonomous driving: Decision-making and motion control with dpf and cdt techniques,
C. Huang, C. Lv, P. Hang, and Y . Xing, “Toward safe and personal- ized autonomous driving: Decision-making and motion control with dpf and cdt techniques,” IEEE/ASME Transactions on Mechatronics , vol. 26, no. 2, pp. 611–620, 2021
2021
-
[22]
Personalized driving behavior oriented autonomous vehicle control for typical traffic situations,
H. Li, W. Wei, S. Zheng, C. Sun, Y . Lu, and T. Zhou, “Personalized driving behavior oriented autonomous vehicle control for typical traffic situations,” Journal of the Franklin Institute , vol. 361, no. 10, p. 106924, 2024
2024
-
[23]
Recent advancements in end-to-end au- tonomous driving using deep learning: A survey,
P. S. Chib and P. Singh, “Recent advancements in end-to-end au- tonomous driving using deep learning: A survey,” IEEE Transactions on Intelligent Vehicles, vol. 9, pp. 103–118, 2023
2023
-
[24]
Personalized car following for autonomous driving with in- verse reinforcement learning,
Z. Zhao, Z. Wang, K. Han, R. Gupta, P. Tiwari, G. Wu, and M. J. Barth, “Personalized car following for autonomous driving with in- verse reinforcement learning,” in 2022 Intl. Conf. on Robotics and Automation (ICRA), 2022, pp. 2891–2897
2022
-
[25]
Text-to-drive: Diverse driving behavior synthesis via large language models,
P. Nguyen, T.-H. J. Wang, Z.-W. Hong, S. Karaman, and D. Rus, “Text-to-drive: Diverse driving behavior synthesis via large language models,” 2024 IEEE/RSJ Intl. Conf. on Intelligent Robots and Systems (IROS), pp. 10 495–10 502, 2024
2024
-
[26]
Multi-objective end-to-end self- driving based on pareto-optimal actor-critic approach,
T. Wang, Y . Luo, J. Liu, and K. Li, “Multi-objective end-to-end self- driving based on pareto-optimal actor-critic approach,” in 2021 IEEE International Intelligent Transportation Systems Conference (ITSC) , 2021, pp. 473–478
2021
-
[27]
PD-MORL: Preference-driven multi-objective reinforcement learning algorithm,
T. Basaklar, S. Gumussoy, and ¨Umit Y . Ogras, “PD-MORL: Preference-driven multi-objective reinforcement learning algorithm,” in Proc. of the 11th Intl. Conf. on Learning Representations (ICLR) , 2022
2022
-
[28]
Demonstration- enhanced adaptable multi-objective robot navigation,
J. de Heuvel, T. Sethuraman, and M. Bennewitz, “Demonstration- enhanced adaptable multi-objective robot navigation,” in Proc. of the IEEE/RSJ Intl. Conf. on Intelligent Robots and Systems (IROS) , 2025
2025
-
[29]
CARLA: An open urban driving simulator,
A. Dosovitskiy, G. Ros, F. Codevilla, A. Lopez, and V . Koltun, “CARLA: An open urban driving simulator,” inProc. of the 1st Annual Conference on Robot Learning , 2017, pp. 1–16
2017
-
[30]
A practical guide to multi-objective reinforcement learning and plan- ning,
C. F. Hayes, R. Radulescu, E. Bargiacchi, J. K ¨allstr¨om, M. Mac- farlane, M. Reymond, T. Verstraeten, L. M. Zintgraf, R. Dazeley, F. Heintz, E. Howley, A. A. Irissappane, P. Mannion, A. Now ´e, G. de Oliveira Ramos, M. Restelli, P. Vamplew, and D. M. Roijers, “A practical gu...
2022
-
[31]
Prediction- guided multi-objective reinforcement learning for continuous robot control,
J. Xu, Y . Tian, P. Ma, D. Rus, S. Sueda, and W. Matusik, “Prediction- guided multi-objective reinforcement learning for continuous robot control,” in Proc. of the 37th Intl. Conf. on Machine Learning , ser. ICML’20, 2020
2020
-
[32]
End-to- end reinforcement learning for autonomous longitudinal control using advantage actor critic with temporal context,
S. Kuutti, R. Bowden, H. Joshi, R. d. Temple, and S. Fallah, “End-to- end reinforcement learning for autonomous longitudinal control using advantage actor critic with temporal context,” in 2019 IEEE Intelligent Transportation Systems Conference (ITSC) , 2019, pp. 2456–2462
2019
-
[33]
PASRL: Stabilising reinforcement learning with past action-state representation learning,
T. Endrei, A. Lozano-Diez, and G. Cserey, “PASRL: Stabilising reinforcement learning with past action-state representation learning,” Preprint submitted to ICLR, 2024
2024
-
[34]
Transfuser: Imitation with transformer-based sensor fusion for au- tonomous driving,
K. Chitta, A. Prakash, B. Jaeger, Z. Yu, K. Renz, and A. Geiger, “Transfuser: Imitation with transformer-based sensor fusion for au- tonomous driving,” IEEE Transactions on Pattern Analysis and Ma- chine Intelligence, vol. 45, pp. 12 878–12 895, 2022
2022
-
[35]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” in 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2016, pp. 770–778
2016
-
[36]
Model-free deep reinforcement learning for urban autonomous driving,
J. Chen, B. Yuan, and M. Tomizuka, “Model-free deep reinforcement learning for urban autonomous driving,” 2019 IEEE Intelligent Trans- portation Systems Conference (ITSC) , pp. 2765–2771, 2019
2019
-
[37]
End-to-end model-free reinforcement learning for urban driving using implicit affordances,
M. Toromanoff, E. Wirbel, and F. Moutarde, “End-to-end model-free reinforcement learning for urban driving using implicit affordances,” 2020 IEEE/CVF Conf. on Computer Vision and Pattern Recognition (CVPR), pp. 7151–7160, 2019
2020
-
[38]
Prioritized experience-based reinforcement learning with human guidance for autonomous driving,
J. Wu, Z. Huang, W. Huang, and C. Lv, “Prioritized experience-based reinforcement learning with human guidance for autonomous driving,” IEEE Transactions on Neural Networks and Learning Systems, vol. 35, no. 1, pp. 855–869, 2024
2024
-
[39]
Carla leaderboard,
CARLA Autonomous Driving Challenge, “Carla leaderboard,” https: //leaderboard.carla.org, 2023, accessed: 2024-08-19
2023
-
[40]
Privileged sensing scaffolds reinforcement learning,
E. Hu, J. Springer, and D. Jayaraman, “Privileged sensing scaffolds reinforcement learning,” in Proc. of the Intl. Conf. on Learning Representations (ICLR), 2024
2024
-
[41]
Human-level control through deep reinforcement learning,
V . Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. A. Riedmiller, A. K. Fidjeland, G. Ostrovski, S. Petersen, C. Beattie, A. Sadik, I. Antonoglou, H. King, D. Kumaran, D. Wierstra, S. Legg, and D. Hassabis, “Human-level control through d...
2015
-
[42]
Searching for MobileNetV3,
A. G. Howard, M. Sandler, G. Chu, L.-C. Chen, B. Chen, M. Tan, W. Wang, Y . Zhu, R. Pang, V . Vasudevan, Q. V . Le, and H. Adam, “Searching for MobileNetV3,” 2019 IEEE/CVF Intl. Conf. on Com- puter Vision (ICCV) , pp. 1314–1324, 2019. Notation Value Description Preference Rewa...
2019
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.