REVIEW 2 major objections 7 minor 1 cited by
Physics-informed Temporal Difference Metric Learning for Robot Motion Planning
T0 review · 2 major / 7 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read This paper claims that adding a temporal difference loss and a metric-space parameterization to neural Eikonal solvers yields self-supervised motion planners that succeed in complex and unseen environments, reporting up to 99.4 percent…
desk verdict The paper's obstacle-normal loss (Eq. 6) is undefined where it acts due to clipping, yet the rest of the work is solid enough to warrant a careful referee rather than a desk reject. 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 central object is the learned travel-time field $T(q_s,q_g)$ whose gradient norm is constrained to equal the reciprocal ground-truth speed $1/S^\star(q)$, making it simultaneously an optimal value function and a geodesic distance. The mechanism is the composite loss $\mathcal{L}=(\lambda_E\mathcal{L}_E+\lambda_{TD}\mathcal{L}_{TD}+\lambda_N\mathcal{L}_N)\mathcal{L}_C$, where $\mathcal{L}_E$ is the Eikonal speed loss, $\mathcal{L}_{TD}$ enforces $T(q_s,q_g)=\Delta t/S^\star(q_g)+T(q_s,q_g+u_g^\star\Delta t)$ along the optimal direction, $\mathcal{L}_N$ aligns the field's gradient with obstacle normals near obstacles, and $\mathcal{L}_C=\exp(-\lambda_C T(q_s,q_g))$ enforces causality by prioritizing small values first. The metric space is parameterized as $T(q_s,q_g)=D(f_\theta(q_s),f_\theta(q_g))$ with $D(x,y)=\sum_i \max_j |x_{i,j}-y_{i,j}|$, an $\ell^1$-sum of $\ell^\infty$ terms chosen so multiple shortest paths are not collapsed into one chord.
What would settle it
Run the method on a maze with a deliberately narrow corridor, compute $d_{\mathrm{obs}}$ with a signed-distance routine that is known to be non-smooth along the medial axis, and compare the learned travel-time contours against a dense Fast Marching reference; if the contour error concentrates exactly where the finite-difference gradient of $S^\star$ disagrees with the analytic gradient used in the obstacle-normal loss, the differentiability assumption is the weak point. Alternatively, toggle the obstacle-normal loss in that corridor: failure to converge would indicate the term is receiving wrong normal directions.
Extended reading notes
Core claim
The paper's central claim is that the Eikonal equation's solution should be read simultaneously as the optimal value function of an optimal control problem and as the geodesic distance of a Riemannian manifold whose metric is $1/S^\star(q)$, and that a neural travel-time field trained only with the pointwise Eikonal loss can satisfy the PDE at sampled points yet drift arbitrarily between them. The paper asserts that adding a temporal difference loss derived from a Taylor expansion along the optimal policy fixes the inter-sample drift, an obstacle-normal alignment term anchors early training near obstacles, a causality weight enforces one-way value propagation, and a metric-space parameterization $T(q_s,q_g)=D(f_\theta(q_s),f_\theta(q_g))$ with $D$ a sum of $\ell^\infty$ terms preserves triangle inequality, symmetry, and non-negativity while allowing multiple shortest paths. With these ingredients and environment conditioning through attention on the obstacle point cloud, the paper reports that the learned field solves the Eikonal equation accurately enough to support sampling-based MPC inference and to generalize to unseen environments across 2 to 12 degrees of freedom.
Load-bearing premise
The training pipeline assumes that the minimum workspace distance between the robot's geometry at configuration $q$ and the obstacles, $d_{\mathrm{obs}}(q,\mathcal{X}_{\mathrm{obs}})$, is differentiable in $q$ through differentiable forward kinematics; if that distance is kinked or approximated in narrow passages or high-DOF arms, the Eikonal, temporal difference, and obstacle-normal losses carry undefined or biased gradients.
Editorial extensions
If this is right
- A travel-time field that is both a metric and an Eikonal solution lets the planner extract paths with sampling-based MPC alone, so inference needs no gradient computation and can recover from local inaccuracies through stochastic exploration.
- Combining the Eikonal loss with the finite-step temporal difference loss is what suppresses spurious local minima: in the 2D maze ablation the full loss reaches error 0.08 versus 1.13 with only the Eikonal loss and 0.21 without the TD loss.
- Environment conditioning through point-cloud attention makes the learned Eikonal solver generalizable: on unseen C3D scenes success is 99.2 percent and on unseen 7-DOF manipulator scenes 84.0 percent, close to seen-scene performance.
- The same learned cost-to-go can serve other downstream planners such as cost-aware T-RRT-style sampling, because the field is a valid metric and not merely a local gradient.
- In the 12-DOF real-world cabinet task the method reports 91 percent success in about 0.09 seconds on average, where prior self-supervised planners did not converge.
Reading between the lines
- If the differentiability assumption on $d_{\mathrm{obs}}$ breaks at medial-axis kinks, the obstacle-normal loss in Eq. 6 should show exactly where: train the same architecture in a corridor whose width approaches the TD step and the finite-difference surrogate of $S^\star$; expect the contour error to spike where the two gradients disagree.
- The paper's metric argument suggests the $\ell^1$/ $\ell^\infty$ combination is load-bearing, so a natural test is to replace only the distance $D$ with, say, a learned quasimetric while keeping every other loss term; if success falls on multi-connected workspaces, the multipath-preserving property is confirmed.
- Because the paper reports weaker generalization to unseen Gibson homes, its own numbers imply the bottleneck is the environment encoder rather than the Eikonal loss; swapping the point-cloud encoder for another shape-conditioning architecture and re-measuring unseen-scene success would isolate that claim.
- The TD step $\Delta t$ is tied to environment clutter (0.02 in open scenes, 0.005 for manipulators), which predicts a direct trade-off: any cluttered environment whose narrowest passage gives a time step below what the model can represent should force either more training epochs or a smaller $\Delta t$.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents a self-supervised method for robot motion planning that learns a travel-time function T(qs,qg) by solving the Eikonal equation. The training objective in Eq. (8) combines the standard Eikonal loss, a temporal difference loss enforcing Bellman optimality over a finite step, an obstacle-normal alignment loss, and a causality weight. The travel-time function is parameterized as a metric distance in a learned latent space using a blockwise L1/L-infinity norm, and the encoder is conditioned on environment point clouds through attention, which enables generalization to unseen environments. Planning at test time is performed with sampling-based MPC. Experiments on 2D mazes, Gibson indoor scenes, C3D cluttered 3D scenes, 7-DOF Franka manipulation, and a 12-DOF dual-arm real-world cabinet show improved success rates and lower planning times relative to prior self-supervised planners.
Significance. The paper makes a solid empirical case that adding a finite-horizon Bellman consistency term to the Eikonal loss improves the quality of the learned travel-time field, and that a metric-learning architecture with a non-Euclidean latent distance is beneficial. The ablation study in Table 2 quantifies the contribution of each loss component and of the metric choice, and the reported success rates on multi-DOF tasks are strong. The environment-conditioned attention mechanism is a useful step toward generalization to unseen scenes, and the promise of code release is a positive reproducibility signal. However, the current manuscript contains an undefined loss term in a load-bearing component, and the empirical gains are not fully disentangled from the MPC inference scheme, so the central claim of a more accurate Eikonal solution is not yet fully supported.
major comments (2)
- [§4.1.2, Eq. (6)] The obstacle-normal alignment loss L_N is ill-defined on a set of positive measure. Since S* is defined by the clipping in Eq. (2), for any configuration with d_obs(q) < d_min, S* is constant at d_min/d_max and hence ∇S* = 0, while the weight (1−S*) is positive. The expression ∇S*/||∇S*|| is therefore 0/0 precisely in the near-obstacle region where the loss is intended to be active. The differentiability assumption on d_obs in §3.2 does not resolve this issue because clipping eliminates the gradient. The manuscript does not specify a surrogate, such as using the gradient of the unclipped distance or clamping the denominator, so the actual trained objective is underspecified. Since the ablation in Table 2 shows that removing L_N raises the maze error from 0.08 to 0.13, this is a load-bearing reproducibility and correctness concern.
- [§5.2, Tables 1(b) and 1(c)] The Ours-G variant, which uses gradient-based path inference instead of MPC, is reported only for the Gibson environment in Table 1(a). In the C3D and 7-DOF manipulator experiments, the comparison of Ours (MPC) against NTF and P-NTF (gradient-based inference) is confounded by the inference mechanism. It is therefore possible that the higher success rates in Tables 1(b) and 1(c) come from MPC's stochastic exploration rather than from a more accurate learned value function. The authors should report Ours-G results for these tasks or explicitly disentangle the contribution of MPC from that of the learned Eikonal solution to support the central claim that the proposed losses and architecture improve the value function.
minor comments (7)
- [§4.1.3, Eqs. (7)-(8)] The causality weight L_C = exp(-λ_C T(qs,qg)) multiplies all losses, including the Eikonal loss. While this is a known heuristic from Wang et al. (2024b), the paper does not analyze whether this output-dependent weighting changes the set of stationary points of the combined loss. Even though the true solution is still a stationary point, spurious minima may be introduced; a brief empirical or theoretical note would strengthen the claim that causality preservation is one of the three key enhancements.
- [§4.2.1] The claim that the L1/L∞ metric 'preserves the geodesic structure' and supports multiple shortest paths is supported only by the illustration in Fig. 2. Please clarify whether this is a rigorous property of the proposed construction or an empirical observation, and provide a mathematical statement if available.
- [§3.2 and §4.2.1] The hyperparameters d_min, d_max, a, and b in Eqs. (2) and (10) are never specified. Since these define the ground-truth speed and the latent space geometry, please include their values in Appendix C or in the code release to make the experiments reproducible.
- [Appendix C.2] The hyperparameters λ_E, λ_TD, λ_N, λ_C, and Δt are given, but the dependence of Δt and λ_N on the environment is described only qualitatively; please provide the specific values used for each environment.
- [§5.2 and figure captions] There are several typos and reference inconsistencies: 'Our-G' vs 'Ours-G' in §5.2; 'metirc' in §4.2.1; 'Demontration' in the Fig. 5 caption; and the P-NTF citation in §5 lists (Ni & Qureshi, 2023a) while the related work and §3.2 cite (Ni & Qureshi, 2023b).
- [Fig. 2 caption] The caption begins with 'L1L2', which appears to be a leftover label; the figure should be clarified with respect to the L1 and L∞ components of the proposed metric.
- [§4.3] The sampling-based MPC is described qualitatively, but the number of samples, horizon, and softmax temperature are not reported; please include these parameters in Appendix C.
Circularity Check
No significant circularity: the central losses are anchored to an external distance-derived speed field, and headline accuracy is checked against external FMM ground truth.
full rationale
The derivation chain is self-contained rather than circular. In Eq. 2, the ground-truth speed S* is computed from external geometric obstacle distances, so the Eikonal loss (Eq. 3) and the TD loss (Eq. 5) are anchored to geometric input, not to the network's own predictions. The TD loss is a bootstrapped Bellman residual, which is a standard training objective rather than a hidden fit. The metric function D (Eq. 10) is imposed as an architectural constraint, not claimed as an empirical prediction; the symmetry and triangle-inequality properties follow directly from the definition of D, which is a design property rather than a derived result. The maze experiments are evaluated against external FMM ground truth (Table 2), and the C3D and manipulator success rates are not fitted parameters. Self-citations to NTFields and P-NTFields are used as prior basis and as baselines, not as an unverified uniqueness theorem or as a parameter fit. The paper does contain a genuine mathematical concern in Eq. 6, where after Eq. 2's clipping the term ∇S*/||∇S*|| is 0/0 in the near-obstacle region, and the authors themselves admit in Sec. 6 that the method 'struggles to generalize effectively to multiple, unseen environments in complex Gibson datasets'; however, these are correctness and reproducibility issues, not circular derivation, so they do not raise the circularity score.
Assumptions & free parameters
free parameters (5)
- dmin and dmax thresholds in Eq. 2 =
not reported
- Loss weights lambda_E, lambda_TD, lambda_N, lambda_C =
1e-2, 1e-3, 1e-3 for 3D; 1e-2, 1e-3, 2e-4 for manipulator; lambda_C = 0.5
- TD step Delta_t =
0.02 for 3D, 0.005 for manipulator
- Latent dimensions a and b in Eq. 10 =
not reported
- MPC inference hyperparameters =
not reported
assumptions (5)
- standard math The solution to the Eikonal equation equals the value function of the optimal control problem in Eq. 4 with dynamics qdot = u, ||u|| = 1, and cost integral ||qdot|| / S* dt.
- domain assumption dobs(q, Xobs), the minimum workspace distance between the robot and obstacles, is differentiable in q through differentiable forward kinematics.
- domain assumption A point cloud Xobs together with PointNext and attention conditioning provides enough information to approximate Eikonal solutions for unseen environments.
- ad hoc to paper The blockwise L1 over L-infinity metric in Eq. 10, composed with a learned encoder, yields a travel-time function that preserves the multiple-shortest-path geodesic structure of the Eikonal solution.
- ad hoc to paper Reweighting the total loss by the causality weight exp(-lambda_C T) does not change the fixed point of the Eikonal solution while improving convergence.
Cite this review
Pith. "Pith review of Physics-informed Temporal Difference Metric Learning for Robot Motion Planning." pith.science (2026). https://pith.science/paper/H5GG5NXF
@misc{pith2026250505691,
author = {Pith},
title = {Pith review of: Physics-informed Temporal Difference Metric Learning for Robot Motion Planning},
year = {2026},
howpublished = {\url{https://pith.science/paper/H5GG5NXF}},
note = {Machine review of arXiv:2505.05691}
}
read the original abstract
The motion planning problem involves finding a collision-free path from a robot's starting to its target configuration. Recently, self-supervised learning methods have emerged to tackle motion planning problems without requiring expensive expert demonstrations. They solve the Eikonal equation for training neural networks and lead to efficient solutions. However, these methods struggle in complex environments because they fail to maintain key properties of the Eikonal equation, such as optimal value functions and geodesic distances. To overcome these limitations, we propose a novel self-supervised temporal difference metric learning approach that solves the Eikonal equation more accurately and enhances performance in solving complex and unseen planning tasks. Our method enforces Bellman's principle of optimality over finite regions, using temporal difference learning to avoid spurious local minima while incorporating metric learning to preserve the Eikonal equation's essential geodesic properties. We demonstrate that our approach significantly outperforms existing self-supervised learning methods in handling complex environments and generalizing to unseen environments, with robot configurations ranging from 2 to 12 degrees of freedom (DOF).
Figures
Figures from the paper (5 more)
Forward citations
Cited by 1 Pith paper
-
Mollified Value Learning
Mollified Value Learning regularizes offline goal-conditioned value estimates with a Feynman-Kac expectation version of the viscous HJB equation instead of a pointwise Eikonal constraint.
Reference graph
Works this paper leans on
-
[1]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...
-
[2]
A geometric perspective on optimal representations for reinforcement learning
Marc Bellemare, Will Dabney, Robert Dadashi, Adrien Ali Taiga, Pablo Samuel Castro, Nicolas Le Roux, Dale Schuurmans, Tor Lattimore, and Clare Lyle. A geometric perspective on optimal representations for reinforcement learning. Advances in neural information processing systems, 32, 2019
work page 2019
-
[3]
Neural path planning: Fixed time, near-optimal path generation via oracle imitation
Mayur J Bency, Ahmed H Qureshi, and Michael C Yip. Neural path planning: Fixed time, near-optimal path generation via oracle imitation. In 2019 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pp.\ 3965--3972. IEEE, 2019
work page 2019
-
[4]
Model-predictive control via cross-entropy and gradient-based optimization
Homanga Bharadhwaj, Kevin Xie, and Florian Shkurti. Model-predictive control via cross-entropy and gradient-based optimization. In Learning for Dynamics and Control, pp.\ 277--286. PMLR, 2020
work page 2020
-
[5]
Robert Bohlin and Lydia E Kavraki. Path planning using lazy prm. In Proceedings 2000 ICRA. Millennium conference. IEEE international conference on robotics and automation. Symposia proceedings (Cat. No. 00CH37065), volume 1, pp.\ 521--528. IEEE, 2000
work page 2000
-
[6]
J Douglas Carroll and Phipps Arabie. Multidimensional scaling. Measurement, judgment and decision making, pp.\ 179--250, 1998
work page 1998
-
[7]
Differentiable spatial planning using transformers
Devendra Singh Chaplot, Deepak Pathak, and Jitendra Malik. Differentiable spatial planning using transformers. In International Conference on Machine Learning, pp.\ 1484--1495. PMLR, 2021
work page 2021
-
[8]
Adam Fishman, Adithyavairavan Murali, Clemens Eppner, Bryan Peele, Byron Boots, and Dieter Fox. Motion policy networks. In Conference on Robot Learning, pp.\ 967--977. PMLR, 2023
work page 2023
Show all 64 references
-
[9]
Batch informed trees (bit*): Sampling-based optimal planning via the heuristically guided search of implicit random geometric graphs
Jonathan D Gammell, Siddhartha S Srinivasa, and Timothy D Barfoot. Batch informed trees (bit*): Sampling-based optimal planning via the heuristically guided search of implicit random geometric graphs. In 2015 IEEE international conference on robotics and automation (ICRA), pp....
2015
-
[10]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.\ 770--778, 2016
2016
-
[11]
Cost-to-go function generating networks for high dimensional motion planning
Jinwook Huh, Volkan Isler, and Daniel D Lee. Cost-to-go function generating networks for high dimensional motion planning. In 2021 IEEE International Conference on Robotics and Automation (ICRA), pp.\ 8480--8486. IEEE, 2021
2021
-
[12]
Robot motion planning in learned latent spaces
Brian Ichter and Marco Pavone. Robot motion planning in learned latent spaces. IEEE Robotics and Automation Letters, 4 0 (3): 0 2407--2414, 2019
2019
-
[13]
Learning sampling distributions for robot motion planning
Brian Ichter, James Harrison, and Marco Pavone. Learning sampling distributions for robot motion planning. In 2018 IEEE International Conference on Robotics and Automation (ICRA), pp.\ 7087--7094. IEEE, 2018
2018
-
[14]
Sampling-based path planning on configuration-space costmaps
L \'e onard Jaillet, Juan Cort \'e s, and Thierry Sim \'e on. Sampling-based path planning on configuration-space costmaps. IEEE Transactions on Robotics, 26 0 (4): 0 635--646, 2010
2010
-
[15]
Fast marching tree: A fast marching sampling-based method for optimal motion planning in many dimensions
Lucas Janson, Edward Schmerling, Ashley Clark, and Marco Pavone. Fast marching tree: A fast marching sampling-based method for optimal motion planning in many dimensions. The International journal of robotics research, 34 0 (7): 0 883--921, 2015
2015
-
[16]
Stomp: Stochastic trajectory optimization for motion planning
Mrinal Kalakrishnan, Sachin Chitta, Evangelos Theodorou, Peter Pastor, and Stefan Schaal. Stomp: Stochastic trajectory optimization for motion planning. In 2011 IEEE international conference on robotics and automation, pp.\ 4569--4574. IEEE, 2011
2011
-
[17]
Sampling-based algorithms for optimal motion planning
Sertac Karaman and Emilio Frazzoli. Sampling-based algorithms for optimal motion planning. The international journal of robotics research, 30 0 (7): 0 846--894, 2011
2011
-
[18]
RRT -connect: An efficient approach to single-query path planning
James J Kuffner and Steven M LaValle. RRT -connect: An efficient approach to single-query path planning. In Proceedings 2000 ICRA. Millennium Conference. IEEE International Conference on Robotics and Automation. Symposia Proceedings (Cat. No. 00CH37065), volume 2, pp.\ 995--10...
2000
-
[19]
Lego: Leveraging experience in roadmap generation for sampling-based planning
Rahul Kumar, Aditya Mandalika, Sanjiban Choudhury, and Siddhartha Srinivasa. Lego: Leveraging experience in roadmap generation for sampling-based planning. In 2019 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pp.\ 1488--1495. IEEE, 2019
2019
-
[20]
igibson 2.0: Object-centric simulation for robot learning of everyday household tasks
Chengshu Li, Fei Xia, Roberto Mart \' n-Mart \' n, Michael Lingelbach, Sanjana Srivastava, Bokui Shen, Kent Vainio, Cem Gokmen, Gokul Dharan, Tanish Jain, et al. igibson 2.0: Object-centric simulation for robot learning of everyday household tasks. arXiv preprint arXiv:2108.03...
2021 arXiv
-
[21]
Learning continuous environment fields via implicit functions
Xueting Li, Sifei Liu, Shalini De Mello, Xiaolong Wang, Ming-Hsuan Yang, and Jan Kautz. Learning continuous environment fields via implicit functions. In International Conference on Learning Representations, 2022. URL https://openreview.net/forum?id=3ILxkQ7yElm
2022
-
[22]
Kinetic energy fields: A solution of riemannian eikonal equation on configuration space manifold
Yiming Li, Jiacheng Qiu, and Sylvain Calinon. Kinetic energy fields: A solution of riemannian eikonal equation on configuration space manifold. In RSS 2024 Workshop on Geometric and Algebraic Structure in Robot Learning
2024
-
[23]
Metric residual network for sample efficient goal-conditioned reinforcement learning
Bo Liu, Yihao Feng, Qiang Liu, and Peter Stone. Metric residual network for sample efficient goal-conditioned reinforcement learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 37, pp.\ 8799--8806, 2023
2023
-
[24]
Physics-informed neural mapping and motion planning in unknown environments
Yuchen Liu, Ruiqi Ni, and Ahmed H Qureshi. Physics-informed neural mapping and motion planning in unknown environments. arXiv preprint arXiv:2410.09883, 2024
2024 arXiv
-
[25]
NTF ields: Neural time fields for physics-informed robot motion planning
Ruiqi Ni and Ahmed H Qureshi. NTF ields: Neural time fields for physics-informed robot motion planning. In International Conference on Learning Representations, 2023 a
2023
-
[26]
Progressive learning for physics-informed neural motion planning
Ruiqi Ni and Ahmed H Qureshi. Progressive learning for physics-informed neural motion planning. arXiv preprint arXiv:2306.00616, 2023 b
2023 arXiv
-
[27]
Physics-informed neural motion planning on constraint manifolds
Ruiqi Ni and Ahmed H Qureshi. Physics-informed neural motion planning on constraint manifolds. arXiv preprint arXiv:2403.05765, 2024
2024 arXiv
-
[28]
Robust & asymptotically locally optimal uav-trajectory generation based on spline subdivision
Ruiqi Ni, Teseo Schneider, Daniele Panozzo, Zherong Pan, and Xifeng Gao. Robust & asymptotically locally optimal uav-trajectory generation based on spline subdivision. In 2021 IEEE International Conference on Robotics and Automation (ICRA), pp.\ 7715--7721. IEEE, 2021
2021
-
[29]
Learning the geodesic embedding with graph neural networks
Bo Pang, Zhongtian Zheng, Guoping Wang, and Peng-Shuai Wang. Learning the geodesic embedding with graph neural networks. ACM Transactions on Graphics (TOG), 42 0 (6): 0 1--12, 2023
2023
-
[30]
Weighted averages on surfaces
Daniele Panozzo, Ilya Baran, Olga Diamanti, and Olga Sorkine-Hornung. Weighted averages on surfaces. ACM Transactions on Graphics (TOG), 32 0 (4): 0 1--12, 2013
2013
-
[31]
An inductive bias for distances: Neural nets that respect the triangle inequality
Silviu Pitis, Harris Chan, Kiarash Jamali, and Jimmy Ba. An inductive bias for distances: Neural nets that respect the triangle inequality. arXiv preprint arXiv:2002.05825, 2020
2002 arXiv
-
[32]
Pointnext: Revisiting pointnet++ with improved training and scaling strategies
Guocheng Qian, Yuchen Li, Houwen Peng, Jinjie Mai, Hasan Hammoud, Mohamed Elhoseiny, and Bernard Ghanem. Pointnext: Revisiting pointnet++ with improved training and scaling strategies. Advances in neural information processing systems, 35: 0 23192--23204, 2022
2022
-
[33]
Deeply informed neural sampling for robot motion planning
Ahmed H Qureshi and Michael C Yip. Deeply informed neural sampling for robot motion planning. In 2018 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pp.\ 6582--6588. IEEE, 2018
2018
-
[34]
Motion planning networks
Ahmed H Qureshi, Anthony Simeonov, Mayur J Bency, and Michael C Yip. Motion planning networks. In 2019 International Conference on Robotics and Automation (ICRA), pp.\ 2118--2124. IEEE, 2019
2019
-
[35]
Motion planning networks: Bridging the gap between learning-based and classical motion planners
Ahmed Hussain Qureshi, Yinglong Miao, Anthony Simeonov, and Michael C Yip. Motion planning networks: Bridging the gap between learning-based and classical motion planners. IEEE Transactions on Robotics, 37 0 (1): 0 48--66, 2020
2020
-
[36]
Chomp: Gradient optimization techniques for efficient motion planning
Nathan Ratliff, Matt Zucker, J Andrew Bagnell, and Siddhartha Srinivasa. Chomp: Gradient optimization techniques for efficient motion planning. In 2009 IEEE International Conference on Robotics and Automation, pp.\ 489--494. IEEE, 2009
2009
-
[37]
Attention beats concatenation for conditioning neural fields
Daniel Rebain, Mark J Matthews, Kwang Moo Yi, Gopal Sharma, Dmitry Lagun, and Andrea Tagliasacchi. Attention beats concatenation for conditioning neural fields. arXiv preprint arXiv:2209.10684, 2022
2022 arXiv
-
[38]
Edmp: Ensemble-of-costs-guided diffusion for motion planning
Kallol Saha, Vishal Mandadi, Jayaram Reddy, Ajit Srikanth, Aditya Agarwal, Bipasha Sen, Arun Singh, and Madhava Krishna. Edmp: Ensemble-of-costs-guided diffusion for motion planning. In 2024 IEEE International Conference on Robotics and Automation (ICRA), pp.\ 10351--10358. IEEE, 2024
2024
-
[39]
Residual gates: A simple mechanism for improved network optimization
Pedro Savarese and Daniel Figueiredo. Residual gates: A simple mechanism for improved network optimization. In Proc. Int. Conf. Learn. Representations, 2017
2017
-
[40]
Universal value function approximators
Tom Schaul, Daniel Horgan, Karol Gregor, and David Silver. Universal value function approximators. In International conference on machine learning, pp.\ 1312--1320. PMLR, 2015
2015
-
[41]
A fast marching level set method for monotonically advancing fronts
James A Sethian. A fast marching level set method for monotonically advancing fronts. Proceedings of the National Academy of Sciences, 93 0 (4): 0 1591--1595, 1996
1996
-
[42]
Pc-planner: Physics-constrained self-supervised learning for robust neural motion planning with shape-aware distance function
Xujie Shen, Haocheng Peng, Zesong Yang, Juzhan Xu, Hujun Bao, Ruizhen Hu, and Zhaopeng Cui. Pc-planner: Physics-constrained self-supervised learning for robust neural motion planning with shape-aware distance function. In SIGGRAPH Asia 2024 Conference Papers, pp.\ 1--11, 2024
2024
-
[43]
Transformation invariance in pattern recognition—tangent distance and tangent propagation
Patrice Y Simard, Yann A LeCun, John S Denker, and Bernard Victorri. Transformation invariance in pattern recognition—tangent distance and tangent propagation. In Neural networks: tricks of the trade, pp.\ 239--274. Springer, 2002
2002
-
[44]
Reinforcement learning: An introduction
Richard S Sutton. Reinforcement learning: An introduction. A Bradford Book, 2018
2018
-
[45]
Upwind finite-difference calculation of traveltimes
Jos Van Trier and William W Symes. Upwind finite-difference calculation of traveltimes. Geophysics, 56 0 (6): 0 812--821, 1991
1991
-
[46]
Attention is all you need
A Vaswani. Attention is all you need. Advances in Neural Information Processing Systems, 2017
2017
-
[47]
Leveraging demonstrations for deep reinforcement learning on robotics problems with sparse rewards
Mel Vecerik, Todd Hester, Jonathan Scholz, Fumin Wang, Olivier Pietquin, Bilal Piot, Nicolas Heess, Thomas Roth \"o rl, Thomas Lampe, and Martin Riedmiller. Leveraging demonstrations for deep reinforcement learning on robotics problems with sparse rewards. arXiv preprint arXiv...
2017 arXiv
-
[48]
Neural kinematic networks for unsupervised motion retargetting
Ruben Villegas, Jimei Yang, Duygu Ceylan, and Honglak Lee. Neural kinematic networks for unsupervised motion retargetting. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.\ 8639--8648, 2018
2018
-
[49]
Understanding and mitigating gradient flow pathologies in physics-informed neural networks
Sifan Wang, Yujun Teng, and Paris Perdikaris. Understanding and mitigating gradient flow pathologies in physics-informed neural networks. SIAM Journal on Scientific Computing, 43 0 (5): 0 A3055--A3081, 2021
2021
-
[50]
Piratenets: Physics-informed deep learning with residual adaptive networks
Sifan Wang, Bowen Li, Yuhan Chen, and Paris Perdikaris. Piratenets: Physics-informed deep learning with residual adaptive networks. arXiv preprint arXiv:2402.00326, 2024 a
2024 arXiv
-
[51]
Respecting causality for training physics-informed neural networks
Sifan Wang, Shyam Sankaran, and Paris Perdikaris. Respecting causality for training physics-informed neural networks. Computer Methods in Applied Mechanics and Engineering, 421: 0 116813, 2024 b
2024
-
[52]
Improved representation of asymmetrical distances with interval quasimetric embeddings
Tongzhou Wang and Phillip Isola. Improved representation of asymmetrical distances with interval quasimetric embeddings. arXiv preprint arXiv:2211.15120, 2022 a
2022 arXiv
-
[53]
On the learning and learnability of quasimetrics
Tongzhou Wang and Phillip Isola. On the learning and learnability of quasimetrics. arXiv preprint arXiv:2206.15478, 2022 b
2022 arXiv
-
[54]
Optimal goal-reaching reinforcement learning via quasimetric learning
Tongzhou Wang, Antonio Torralba, Phillip Isola, and Amy Zhang. Optimal goal-reaching reinforcement learning via quasimetric learning. In International Conference on Machine Learning, pp.\ 36411--36430. PMLR, 2023
2023
-
[55]
Dd-ppo: Learning near-perfect pointgoal navigators from 2.5 billion frames
Erik Wijmans, Abhishek Kadian, Ari Morcos, Stefan Lee, Irfan Essa, Devi Parikh, Manolis Savva, and Dhruv Batra. Dd-ppo: Learning near-perfect pointgoal navigators from 2.5 billion frames. arXiv preprint arXiv:1911.00357, 2019
1911 arXiv
-
[56]
Aggressive driving with model predictive path integral control
Grady Williams, Paul Drews, Brian Goldfain, James M Rehg, and Evangelos A Theodorou. Aggressive driving with model predictive path integral control. In 2016 IEEE International Conference on Robotics and Automation (ICRA), pp.\ 1433--1440. IEEE, 2016
2016
-
[57]
iplanner: Imperative path planning
Fan Yang, Chen Wang, Cesar Cadena, and Marco Hutter. iplanner: Imperative path planning. arXiv preprint arXiv:2302.11434, 2023
2023
-
[58]
Path planning using neural a* search
Ryo Yonetani, Tatsunori Taniai, Mohammadamin Barekatain, Mai Nishimura, and Asako Kanezaki. Path planning using neural a* search. In International conference on machine learning, pp.\ 12029--12039. PMLR, 2021
2021
-
[59]
Graphmp: Graph neural network-based motion planning with efficient graph search
Xiao Zang, Miao Yin, Jinqi Xiao, Saman Zonouz, and Bo Yuan. Graphmp: Graph neural network-based motion planning with efficient graph search. Advances in Neural Information Processing Systems, 36: 0 3131--3142, 2023
2023
-
[60]
Learning invariant representations for reinforcement learning without reconstruction
Amy Zhang, Rowan McAllister, Roberto Calandra, Yarin Gal, and Sergey Levine. Learning invariant representations for reinforcement learning without reconstruction. arXiv preprint arXiv:2006.10742, 2020
2006 arXiv
-
[61]
Point transformer
Hengshuang Zhao, Li Jiang, Jiaya Jia, Philip HS Torr, and Vladlen Koltun. Point transformer. In Proceedings of the IEEE/CVF international conference on computer vision, pp.\ 16259--16268, 2021
2021
-
[62]
@esa (Ref
\@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should ...
-
[63]
\@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@firs...
-
[64]
@open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibset...
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.