REVIEW 6 major objections 6 minor 50 references
Iterative Batch Reinforcement Learning via Safe Diversified Model-based Policy Search
T0 review · 6 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read Adding a diversity term to safe model-based policy search makes iterative batch RL improve every round, not just repeat old behavior.
desk verdict A modest but legitimate extension combining behavior-regularized safety with MinLSED diversity in iterative batch RL; the empirical pattern is consistent, but the evaluation needs more baselines and cleanup. 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 method combines three components: (1) an ensemble model-based policy search that learns a transition model and a reward model from all collected data and optimizes K policies through virtual rollouts; (2) a safety mechanism, instantiated either as a likelihood-based soft constraint that penalizes actions improbable under a learned Gaussian behavior policy, or as a policy architecture that directly bounds actions to keep states within known safety ranges; (3) a diversity objective, MinLSED, defined as the minimum over pairs of the average Euclidean distance between their virtual trajectories. The MinLSED term is designed to avoid the outlier problem of plain averaged lock-step distance, and one policy is excluded from the diversity term so that it remains purely reward- and safety-driven. The combined loss is trained end-to-end via automatic differentiation.
What would settle it
In an Industrial Benchmark run, record the actual state trajectories of the deployed diversified ensemble and compare their coverage to the non-diversified ensemble; if the diversified set does not cover a meaningfully larger or more distinct region of the (velocity, gain, shift) space, or if the improvement disappears when the learned model is made deliberately wrong in the regions the diversity term pushes toward, the central mechanism is refuted.
Extended reading notes
Core claim
The central claim is that incorporating diversity into safe model-based policy search yields targeted policy improvements at each iteration of an offline RL loop, while safety constraints prevent performance from dropping below the behavior policy. The paper introduces iterative batch reinforcement learning (IBRL), where each deployment produces a new batch appended to the dataset, and shows that an ensemble of policies trained with a MinLSED diversity term explores more informative regions of the state space. In experiments on the Industrial Benchmark, the diversified variant reduces cost from 216.5 to 182.7 over four iterations under a constrained policy, compared to 188.9 without diversity, and shows lower variance. The authors present this as evidence that diversity, not just iteration, drives improvement.
Load-bearing premise
The argument depends on the assumption that trajectories that are far apart inside the learned transition model are also far apart on the real system, so that simulated diversity translates into useful real-world data collection.
Editorial extensions
If this is right
- A controller trained on a single static batch can be improved over successive deployments without ever falling below the behavior policy's cost.
- The diversity term makes the learned ensemble visit more of the state space, which in turn gives the next iteration's transition model better data and reduces model bias.
- Safety as a soft constraint does not have to be traded off against performance or diversity; the flat-in-the-safe-region loss keeps the policy within the support of the data.
- The MinLSED choice prevents one outlier policy from dominating the diversity objective, so the ensemble remains genuinely behaviorally varied.
Reading between the lines
- A testable consequence the paper leaves implicit: the diversity gain should be largest when the learned model's uncertainty is spatially structured, and in settings where the model is uniformly accurate diversity may add little beyond safety.
- The paper's observation that the soft-constraint safety metric implicitly encourages diversity suggests that some safety mechanisms may already provide exploratory drive, making an explicit diversity term redundant for those formulations.
- The practice of excluding one policy from the diversity objective, keeping it purely reward-driven, is a pragmatic device; an interesting extension would be to let the role rotate or to tie the diversity weight to the estimated model error in the regions being explored.
- Connecting to the growing-batch literature, the method suggests that the value of new data depends on its coverage difference from old data, so an information-theoretic data-collection criterion might be derived from the MinLSED objective.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes an iterative batch reinforcement learning (IBRL) framework in which, after each deployment, newly collected data is appended to the existing batch and the transition model and policy ensemble are retrained. The method augments model-based policy search with two components: safety mechanisms (safety-as-objective, safety as a soft constraint, and a directly constrained policy) and a diversity bonus based on the minimum pairwise lock-step Euclidean distance (MinLSED) between trajectories generated in the learned model. Experiments on a 2D grid environment and the Industrial Benchmark compare a diversity weight of α_d = 0.15 against α_d = 0.0, reporting lower costs, lower variance across repetitions, and, in the constrained-policy experiment, a smaller gap between predicted and true costs. The conclusion states that incorporating diversity provides targeted improvements in each iteration while safety prevents performance from dropping below the behavior policy.
Significance. The problem addressed is practically relevant: in industrial control, offline RL is often applied repeatedly as new deployment data becomes available, and an explicit diversity signal could improve data collection. The paper is among the first to combine safety and diversity in this iterative setting, and it has the virtue of reporting true deployment costs (straight lines in Figures 5 and 6) rather than only model-predicted costs. The internal comparison between α_d = 0 and α_d = 0.15 is consistent across two safety mechanisms. However, the evidence is thin: the method is compared only against itself, no alternative exploration incentive is tested, the diversity term is never validated against true-environment trajectory diversity, and several key hyperparameters and experimental details are missing. If the central claim is correct, the approach could be a useful heuristic for industrial deployment, but the manuscript as it stands does not establish that claim beyond an internal ablation.
major comments (6)
- [§3.2, Eqs. (8)-(9)] The diversity objective is not well-defined and is not reproducible. In Eq. (8), the sum runs over all ordered pairs (k, k') with k' ≠ k, which gives K(K-1) terms; dividing by K! is not the correct normalization for K > 2. In Eq. (9), the notation 'min_{k'≠k, k∈K}' does not specify whether the minimum is over ordered pairs or unordered pairs, and the factor 1/H is redundant because D(T_i, T_j) already averages over the horizon. Since MinLSED is the central new component of the method, the exact objective being optimized must be stated unambiguously.
- [§3.3, Eq. (10) and Algorithm 1] The description of the loss is internally inconsistent. The text states that 'by default we reduce the scope of the diversity term to exclude one (the first) policy,' but Eq. (10) as written applies the diversity term to all k and all k' ≠ k with no exclusion. Additionally, the reward term has a leading coefficient -1/(NKH) while the safety and diversity terms have 1/(KH), making the relative weighting of the reward term ambiguous. Equation (10) also contains a typo ('Lθ)'). The exact loss minimized in the experiments must be specified precisely.
- [§4.2, Table 1 and experimental setup] The number of repetitions is inconsistent: Section 4.2 states 'We repeat each experiment three times and report average results,' but Table 1's caption says 'standard error over 6 repetitions.' No seed values or a statement of how many random seeds were used are provided. Because the central empirical claim is a difference in mean cost and variance between α_d = 0 and α_d = 0.15, the reader cannot assess statistical significance without knowing the exact number of runs and the seeds.
- [§4.2, Eq. (10) and Experiments 1-2] Two of the three loss hyperparameters in Eq. (10), namely α_s and δ, are never reported. Only α_d = 0.15 is stated. Since the paper's theme is the interaction between safety and diversity, omitting α_s and δ makes the experiments irreproducible and prevents the reader from evaluating whether the safety constraint is active in the reported runs.
- [§4.2 and §5] The proposed mechanism is that maximizing MinLSED diversity in the learned model leads to more informative real-world data collection, which in turn improves the model and policy. However, the paper never measures diversity of the deployed policies in the true environment. The predicted-versus-true cost plots (Figures 5 and 6) are suggestive but do not isolate the diversity mechanism. To support the causal claim, the authors should either report true-environment diversity of the deployed ensemble or compare against an equally strong non-diversity exploration incentive, such as matched action noise or an uncertainty-based exploration bonus.
- [§4.2, all experiments] The experiments contain no external baselines. The only comparison is between α_d = 0 and α_d = 0.15 within the proposed method, and the improvement over iterations for α_d = 0 shows that data accumulation alone already reduces cost. Without comparing against, for example, repeated deployment of the behavior policy or a standard offline RL algorithm applied to the growing batch, the paper cannot support the broader claim that the proposed safe diversified IBRL procedure is a viable way to improve industrial controllers.
minor comments (6)
- [Eq. (7)] Equation (7) is self-referential: π_constr appears on both sides of the definition. Presumably the right-hand side should contain the unconstrained policy π(s_t; θ_k). Please correct the equation and clarify how the bounds B1, B2 are mapped to action bounds when only a subset of state variables is affected.
- [§3.2] The line 'Ld(η, ω, θ) = −D(T1, .., TK) = −D(θ, ω, η)' is confusing because D is not defined as a function of η, ω, and θ. Please define the diversity loss as an explicit function of the parameters and the model.
- [Algorithm 1] The algorithm step 'Train π(. ; θ1) . . . , π(. ; θk) on Eq. (10)' should state that the model parameters η and ω are held fixed while optimizing the policy parameters, and it should specify whether the safety and diversity terms are computed on the fly using the current policy or using a detached copy.
- [Figure 3] The panel labels read 'Policymap - = 0.0' and 'Policymap - = 0.4'; the 'λ' symbol is missing. Please correct the labels.
- [Appendix A.2] There is a typo: 'Wwe use a simple policy' should be 'We use a simple policy.'
- [§4.2] The data collection procedure is underspecified: the paper states that the initial random bounded batch is collected via five rollouts of horizon 200, but does not state how many rollouts are executed per policy in each new batch, whether starting states are sampled uniformly, or how the fifteen past observations are exactly concatenated into the state representation.
Circularity Check
No significant circularity: the diversity-driven improvement is an empirical result measured on the external benchmark's true cost, not a quantity forced by the training objective; the self-citations are contextual and the self-referential Eq. (7) is a typographical slip.
full rationale
The paper derives no analytic prediction; its central claim is that MinLSED diversity (Eq. 9), optimized over virtual rollouts of the learned transition model f (Algorithm 1), accelerates cost reduction across batch iterations (Table 1). That claim is evaluated on the externally runnable Industrial Benchmark simulator and a 2D grid world, reporting true deployment costs in Table 1 and Figs. 5-6, which explicitly separate predicted model costs from true costs. No parameter is fitted to the true costs and then reported as a prediction: policies are trained against predicted reward (Eq. 1), the likelihood-based safety term (Eqs. 5-6), and model-computed trajectory separation (Eqs. 8-9), while the measured outcome is the simulator cost. The improvement is therefore not an equality-by-construction of the objective; the transfer of model-computed diversity to informative real-environment exploration is an empirical assumption, so any associated risk is a correctness or external-validity concern rather than circularity. Self-citations [1] and [45] support background regularization formulations and the benchmark's medium-policy setup, and the Industrial Benchmark [3] is a fixed simulator usable outside this paper; none of these is invoked to forbid alternative methods or to justify the diversity objective as forced. The only self-referential equation is Eq. (7), which defines the constrained policy in terms of itself; given the surrounding text ('let π(st; θ) be designed such that only actions in this bound can be computed'), this is a typographical slip rather than a load-bearing circular step, and the experiment using it reports empirical costs under the same external evaluation. Minor reporting inconsistencies (3 versus 6 repetitions in Table 1, omitted α_s and δ values) weaken causal attribution but do not constitute circularity.
Assumptions & free parameters
free parameters (4)
- lambda (safety weight in safety-as-objective) =
0.4
- alpha_d (diversity weight) =
0.15
- alpha_s (safety soft-constraint weight) =
not reported
- delta (safety threshold in Eq. 6) =
not reported
assumptions (4)
- domain assumption A transition model f(s,a;eta) and reward model f(s,a;omega) learned from the batch are accurate enough for policy optimization and for computing trajectory diversity.
- domain assumption The behavior policy is well approximated by a Gaussian with diagonal covariance, and its unnormalized likelihood is a valid safety measure.
- domain assumption Actions affect a subset of next-state variables in a known linear way for the constrained policy.
- ad hoc to paper Minimum pairwise trajectory distance (Eq. 9) is an effective exploration incentive for iterative batch RL.
Cite this review
Pith. "Pith review of Iterative Batch Reinforcement Learning via Safe Diversified Model-based Policy Search." pith.science (2026). https://pith.science/paper/J5TSXK7T
@misc{pith2026241109722,
author = {Pith},
title = {Pith review of: Iterative Batch Reinforcement Learning via Safe Diversified Model-based Policy Search},
year = {2026},
howpublished = {\url{https://pith.science/paper/J5TSXK7T}},
note = {Machine review of arXiv:2411.09722}
}
read the original abstract
Batch reinforcement learning enables policy learning without direct interaction with the environment during training, relying exclusively on previously collected sets of interactions. This approach is, therefore, well-suited for high-risk and cost-intensive applications, such as industrial control. Learned policies are commonly restricted to act in a similar fashion as observed in the batch. In a real-world scenario, learned policies are deployed in the industrial system, inevitably leading to the collection of new data that can subsequently be added to the existing recording. The process of learning and deployment can thus take place multiple times throughout the lifespan of a system. In this work, we propose to exploit this iterative nature of applying offline reinforcement learning to guide learned policies towards efficient and informative data collection during deployment, leading to continuous improvement of learned policies while remaining within the support of collected data. We present an algorithmic methodology for iterative batch reinforcement learning based on ensemble-based model-based policy search, augmented with safety and, importantly, a diversity criterion.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
P. Swazinna, S. Udluft, and T. Runkler. Overcoming model bias for robust offline deep reinforcement learning. Engineering Applications of Artificial Intelligence, 104:104366, 2021
work page 2021
-
[2]
T. Yu, A. Kumar, R. Rafailov, A. Rajeswaran, S. Levine, and C. Finn. Combo: Conservative offline model-based policy optimization. Advances in neural information processing systems, 34:28954–28967, 2021
work page 2021
-
[3]
D. Hein, S. Depeweg, M. Tokic, S. Udluft, A. Hentschel, T. A. Runkler, and V . Sterzing. A benchmark environment motivated by industrial control problems. In 2017 IEEE Symposium Series on Computational Intelligence (SSCI), pages 1–8. IEEE, 2017
work page 2017
-
[4]
T. Matsushima, H. Furuta, Y . Matsuo, O. Nachum, and S. Gu. Deployment-efficient rein- forcement learning via model-based offline optimization. arXiv preprint arXiv:2006.03647, 2020
arXiv 2006
-
[5]
X. Hu, Y . Ma, C. Xiao, Y . Zheng, and Z. Meng. In-sample policy iteration for offline reinforce- ment learning. arXiv preprint arXiv:2306.05726, 2023
work page Pith review arXiv 2023
-
[6]
L. Zhang, L. Tedesco, P. Rajak, Y . Zemmouri, and H. Brunzell. Ac- tive learning for iterative offline reinforcement learning. In NeurIPS 2023 Workshop on Adaptive Experimental Design and Active Learning in the Real World , 2023. URL https://www.amazon.science/publications/ active-learning-for-iterative-offline-reinforcement-learning
work page 2023
- [7]
-
[8]
M. Riedmiller. Neural fitted Q iteration–first experiences with a data efficient neural reinforce- ment learning method. In European Conference on Machine Learning, pages 317–328. Springer, 2005
work page 2005
Show all 50 references
-
[9]
Riedmiller, T
M. Riedmiller, T. Gabel, R. Hafner, and S. Lange. Reinforcement learning for robot soccer. Autonomous Robots, 27(1):55–73, 2009
2009
-
[10]
Lange, T
S. Lange, T. Gabel, and M. Riedmiller. Batch reinforcement learning. In Reinforcement Learning, pages 45–73. Springer, 2012
2012
-
[11]
D. Hein, A. Hentschel, T. A. Runkler, and S. Udluft. Reinforcement learning with particle swarm optimization policy (PSO-P) in continuous state and action spaces. International Journal of Swarm Intelligence Research (IJSIR), 7(3):23–42, 2016
2016
-
[12]
Depeweg, J
S. Depeweg, J. M. Hernández-Lobato, F. Doshi-Velez, and S. Udluft. Learning and policy search in stochastic dynamical systems with bayesian neural networks. International Conference on Learning Representations, 2017
2017
-
[13]
D. Hein, S. Udluft, and T. A. Runkler. Interpretable policies for reinforcement learning by genetic programming. Engineering Applications of Artificial Intelligence, 76:158–169, 2018
2018
-
[14]
Depeweg, J.-M
S. Depeweg, J.-M. Hernandez-Lobato, F. Doshi-Velez, and S. Udluft. Decomposition of uncertainty in bayesian deep learning for efficient and risk-sensitive learning. In International Conference on Machine Learning, pages 1184–1193. PMLR, 2018
2018
-
[15]
Silver, G
D. Silver, G. Lever, N. Heess, T. Degris, D. Wierstra, and M. Riedmiller. Deterministic policy gradient algorithms. In International conference on machine learning, pages 387–395. PMLR, 2014. 9
2014
-
[16]
Schulman, F
J. Schulman, F. Wolski, P. Dhariwal, A. Radford, and O. Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017
2017 arXiv
-
[17]
Haarnoja, A
T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. arXiv preprint arXiv:1801.01290, 2018
2018 arXiv
-
[18]
Fujimoto, D
S. Fujimoto, D. Meger, and D. Precup. Off-policy deep reinforcement learning without explo- ration. In International conference on machine learning, pages 2052–2062. PMLR, 2019
2019
-
[19]
Kumar, J
A. Kumar, J. Fu, M. Soh, G. Tucker, and S. Levine. Stabilizing off-policy Q-learning via bootstrapping error reduction. In Advances in Neural Information Processing Systems, pages 11761–11771, 2019
2019
-
[20]
Y . Wu, G. Tucker, and O. Nachum. Behavior regularized offline reinforcement learning.arXiv preprint arXiv:1911.11361, 2019
1911 arXiv
-
[21]
Kumar, A
A. Kumar, A. Zhou, G. Tucker, and S. Levine. Conservative Q-learning for offline reinforcement learning. arXiv preprint arXiv:2006.04779, 2020
2006 arXiv
-
[22]
Fujimoto and S
S. Fujimoto and S. S. Gu. A minimalist approach to offline reinforcement learning. Advances in neural information processing systems, 34:20132–20145, 2021
2021
-
[23]
Kostrikov, A
I. Kostrikov, A. Nair, and S. Levine. Offline reinforcement learning with implicit q-learning. arXiv preprint arXiv:2110.06169, 2021
2021 arXiv
-
[24]
N. Y . Siegel, J. T. Springenberg, F. Berkenkamp, A. Abdolmaleki, M. Neunert, T. Lampe, R. Hafner, N. Heess, and M. Riedmiller. Keep doing what worked: Behavioral modelling priors for offline reinforcement learning. arXiv preprint arXiv:2002.08396, 2020
2002 arXiv
-
[25]
Y . Jin, Z. Yang, and Z. Wang. Is pessimism provably efficient for offline rl? InInternational Conference on Machine Learning, pages 5084–5096. PMLR, 2021
2021
-
[26]
Yin and Y .-X
M. Yin and Y .-X. Wang. Towards instance-optimal offline reinforcement learning with pes- simism. Advances in neural information processing systems, 34:4065–4078, 2021
2021
-
[27]
Deisenroth and C
M. Deisenroth and C. E. Rasmussen. PILCO: A model-based and data-efficient approach to policy search. In 28th International Conference on Machine Learning (ICML-11), pages 465–472, 2011
2011
-
[28]
Nagabandi, G
A. Nagabandi, G. Kahn, R. S. Fearing, and S. Levine. Neural network dynamics for model- based deep reinforcement learning with model-free fine-tuning. In 2018 IEEE International Conference on Robotics and Automation (ICRA), pages 7559–7566. IEEE, 2018
2018
-
[29]
T. Yu, G. Thomas, L. Yu, S. Ermon, J. Y . Zou, S. Levine, C. Finn, and T. Ma. MOPO: Model- based offline policy optimization. In Advances in Neural Information Processing Systems , volume 33, pages 14129–14142, 2020
2020
-
[30]
Kidambi, A
R. Kidambi, A. Rajeswaran, P. Netrapalli, and T. Joachims. MOReL: Model-based offline reinforcement learning. arXiv preprint arXiv:2005.05951, 2020
2005 arXiv
-
[31]
J. Li, X. Hu, H. Xu, J. Liu, X. Zhan, and Y .-Q. Zhang. Proto: Iterative policy regularized offline-to-online reinforcement learning. arXiv preprint arXiv:2305.15669, 2023
2023 arXiv
-
[32]
M. S. Mark, A. Ghadirzadeh, X. Chen, and C. Finn. Fine-tuning offline policies with optimistic action selection. In Deep Reinforcement Learning Workshop NeurIPS 2022 , 2022. URL https://openreview.net/forum?id=ELmiPlCOSw
2022
-
[33]
A. Nair, A. Gupta, M. Dalal, and S. Levine. Awac: Accelerating online reinforcement learning with offline datasets. arXiv preprint arXiv:2006.09359, 2020. 10
2006 arXiv
-
[34]
S. Lee, Y . Seo, K. Lee, P. Abbeel, and J. Shin. Offline-to-online reinforcement learning via balanced replay and pessimistic q-ensemble. In Conference on Robot Learning , pages 1702–1712. PMLR, 2022
2022
-
[35]
X. Hu, Y . Ma, C. Xiao, Y . Zheng, and J. Hao. Iteratively refined behavior regularization for offline reinforcement learning. 2023
2023
-
[36]
Schmidhuber
J. Schmidhuber. A possibility for implementing curiosity and boredom in model-building neural controllers. In Proc. of the international conference on simulation of adaptive behavior: From animals to animats, pages 222–227, 1991
1991
-
[37]
Pathak, P
D. Pathak, P. Agrawal, A. A. Efros, and T. Darrell. Curiosity-driven exploration by self- supervised prediction. In International conference on machine learning , pages 2778–2787. PMLR, 2017
2017
-
[38]
Eysenbach, A
B. Eysenbach, A. Gupta, J. Ibarz, and S. Levine. Diversity is all you need: Learning skills without a reward function. arXiv preprint arXiv:1802.06070, 2018
2018 arXiv
-
[40]
Yarats, D
D. Yarats, D. Brandfonbrener, H. Liu, M. Laskin, P. Abbeel, A. Lazaric, and L. Pinto. Don’t change the algorithm, change the data: Exploratory data for offline reinforcement learning. arXiv preprint arXiv:2201.13425, 2022
2022 arXiv
-
[41]
Lambert, M
N. Lambert, M. Wulfmeier, W. Whitney, A. Byravan, M. Bloesch, V . Dasagi, T. Hertweck, and M. Riedmiller. The challenges of exploration for offline reinforcement learning. arXiv preprint arXiv:2201.11861, 2022
2022 arXiv
-
[42]
Hong, T.-Y
Z.-W. Hong, T.-Y . Shann, S.-Y . Su, Y .-H. Chang, T.-J. Fu, and C.-Y . Lee. Diversity-driven exploration strategy for deep reinforcement learning.Advances in neural information processing systems, 31, 2018
2018
-
[43]
Parker-Holder, A
J. Parker-Holder, A. Pacchiano, K. M. Choromanski, and S. J. Roberts. Effective diversity in population based reinforcement learning. Advances in Neural Information Processing Systems, 33:18050–18062, 2020
2020
-
[44]
Kumar, A
S. Kumar, A. Kumar, S. Levine, and C. Finn. One solution is not all you need: Few-shot extrapolation via structured maxent rl. Advances in Neural Information Processing Systems, 33: 8198–8210, 2020
2020
-
[45]
Swazinna, S
P. Swazinna, S. Udluft, and T. Runkler. User-interactive offline reinforcement learning. Interna- tional Conference on Learning Representations, 2023
2023
-
[46]
Brandfonbrener, W
D. Brandfonbrener, W. Whitney, R. Ranganath, and J. Bruna. Offline rl without off-policy evaluation. Advances in neural information processing systems, 34:4933–4946, 2021
2021
-
[47]
N. K. Sinha and M. P. Griscik. A stochastic approximation method. IEEE Transactions on Systems, Man, and Cybernetics, SMC-1(4):338–344, 1971. doi:10.1109/TSMC.1971.4308316
1971
-
[48]
Bottou, F
L. Bottou, F. E. Curtis, and J. Nocedal. Optimization methods for large-scale machine learning. SIAM review, 60(2):223–311, 2018
2018
-
[49]
Mangalam, H
K. Mangalam, H. Girase, S. Agarwal, K.-H. Lee, E. Adeli, J. Malik, and A. Gaidon. It is not the journey but the destination: Endpoint conditioned trajectory prediction. In Computer Vision– ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part ...
2020
-
[50]
C. Choi, J. H. Choi, J. Li, and S. Malla. Shared cross-modal trajectory prediction for au- tonomous driving. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 244–253, 2021
2021
-
[51]
H. Zhao, J. Gao, T. Lan, C. Sun, B. Sapp, B. Varadarajan, Y . Shen, Y . Shen, Y . Chai, C. Schmid, et al. Tnt: Target-driven trajectory prediction. In Conference on Robot Learning, pages 895–904. PMLR, 2021. 12 A Dataset visualization for industrial benchmark A.1 Random bounde...
2021
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.