Pith. sign in

REVIEW 3 major objections 3 minor 2 cited by

Coarse-to-Fine 3D Keyframe Transporter

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

Pith's one-line read Keyframe imitation learning becomes bi-equivariant when actions are scored by 3D cross-correlation, yielding a policy that beats strong keyframe imitation baselines by >10% on 18 simulated tasks and by 55% on 4 physical tasks.

desk verdict A solid extension of Transporter bi-equivariance to keyframe IL; the off-manifold augmentation is a real blemish but not a dealbreaker. read the letter →

arxiv 2502.01773 v1 pith:KSL3YSDG submitted 2025-02-03 cs.RO cs.CV

classification cs.ROcs.CV
keywords keyframeimitationlearningbi-equivarianceSE(3)cross-correlationcoarse-to-fineactionevaluationTransporterNetworksroboticmanipulationdataaugmentation
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

This paper argues that keyframe imitation learning—teaching a robot to move through a few key gripper poses—has a bi-equivariant symmetry that most methods ignore: rotating or translating the whole scene should rotate or translate the target pose, while rotating the object held in the gripper should pre-compensate the action. To exploit this, the authors build a Keyframe Transporter that scores every possible SE(3) keyframe action by 3D cross-correlation between scene features and in-hand object features, and they make this search tractable with a three-level coarse-to-fine evaluation over translations and rotations. With only this symmetry built into the architecture, the resulting policy learns many tasks—pushing, turning, tool use, and pick-place—from few demonstrations. The paper's experiments report an average improvement over 10% against strong keyframe imitation baselines across 18 simulated tasks and an average 55% improvement across 4 physical tasks.

What carries the argument

The load-bearing machinery is the pair of equivariance identities (Eqs. 2–3) together with the lift cross-correlation $(b \star k)[g] = \int_x b(x)\,(g \cdot k)(x)\,dx$ over $SE(3)$. The cross-correlation makes symmetry architectural: rotating the in-hand feature kernel and sliding it through the scene feature volume densely scores every discretized SE(3) action while preserving equivariance. The coarse-to-fine evaluator starts at a $24^3$ voxel $\times 24$ rotation grid and refines over three levels down to a resolution equivalent to $96^3 \times 36864$ (1 cm translation, 7.5° rotation), which makes 3D cross-correlation computationally practical. A self-supervised mask excludes distractors from the in-hand crop, and bi-equivariant data augmentation $s \mapsto g_1 s$, $s_{ih} \mapsto g_2 s_{ih}$, $a \mapsto g_1 a g_2^{-1}$ approximates the continuous symmetry.

What would settle it

Train the model on demonstrations of a gravity-sensitive task (e.g., flipping or pouring) with the grasped object in a single orientation, then test with the object rotated by 90° or more outside the augmentation range; if success collapses, the learned policy is not actually generalizing via bi-equivariance.

Watch

Extended reading notes

Core claim

The central claim is that the keyframe action policy is bi-equivariant: for any scene transformation $g_1 \in SE(3)$, the optimal action satisfies $g_1 a^*_T = \pi(g_1 \cdot s, s_{ih})$, and for any in-hand transformation $g_2 \in SE(3)$ it satisfies $a^*_T g_2^{-1} = \pi(s, g_2 \cdot s_{ih})$ (Eqs. 2–3). The paper realizes this property by treating every keyframe action as a placement of the in-hand object or gripper into the scene, computing action values as the lift cross-correlation between the query network's masked in-hand features and the key network's scene features, and searching the SE(3) action space coarse-to-fine with hierarchical voxels and Healpix rotation grids. The result is a single unified architecture that handles equivariant actions (grasping, pushing) and bi-equivariant actions (placing, tool use) and, in the reported experiments, achieves higher success rates than Transformer- and Euler-angle-based keyframe imitation baselines.

Load-bearing premise

The central assumption is that the optimal keyframe action is genuinely bi-equivariant under independent $SE(3)$ transformations of the scene and the grasped object; this can be violated by gravity, friction, contacts, and non-rigid objects, and the network only approximates the continuous rotation symmetry through data augmentation.

Editorial extensions

If this is right

  • A single architecture can handle equivariant actions (grasping, pushing) and bi-equivariant actions (placing, tool use) across many tasks, unlike prior bi-equivariant pick-place methods.
  • With 10 demonstrations, the method approaches the performance of the best keyframe imitation baseline trained on 100 demonstrations, indicating roughly an order-of-magnitude reduction in data needs.
  • The three-level coarse-to-fine SE(3) evaluation makes 3D cross-correlation practical at high resolution, with one-shot inference and about 0.7 s per SGD step, avoiding the repeated voxel rotations or hundreds of diffusion steps used by other bi-equivariant methods.
  • Encoding the in-hand object explicitly lets the policy react to gripper-object pose changes, which is why the reported real-world experiments show a 55% average improvement over the strongest image-based baseline.

Reading between the lines

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

  • The same scene/in-hand cross-correlation decomposition could be applied to other structured prediction problems in robotics, such as grasp contact-point prediction or tool-use affordance learning, wherever a gripper-relative input and a world-relative input are involved.
  • Because continuous rotation is only approximated through augmentation, a version using exactly equivariant features (for example, spherical harmonics or irreducible representations) could close the remaining gap on high-precision tasks; this is a testable extension the paper explicitly flags as a limitation.
  • The reported gain over the strongest baseline may partly reflect that baseline's blindness to the in-hand state; a control experiment that feeds that baseline an additional in-hand observation would isolate how much of the improvement comes from the cross-correlation structure versus simply giving the baseline more information.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 3 minor

Summary. The paper proposes a keyframe imitation learning method for SE(3) manipulation policies, based on a 3D extension of the Transporter Networks place module. The central claim is that a keyframe policy is bi-equivariant under independent transformations of the scene and of the in-hand object, and that this symmetry can be exploited by computing a 3D cross-correlation between scene features and in-hand features. To make the resulting 6D action search tractable, the paper introduces a three-level coarse-to-fine SE(3) action evaluation scheme. The method is evaluated on 18 RLBench tasks with 10 or 100 demonstrations and in four physical experiments, reporting average improvements over keyframe IL baselines of more than 10% in simulation and 55% in the real world. Ablations are presented for coarse-to-fine search, cross-correlation, in-hand segmentation, and data augmentation.

Significance. If the bi-equivariance claim were established, this would be a meaningful extension of equivariant manipulation methods from pick-place to general keyframe tasks, and the coarse-to-fine SE(3) evaluation is a practically relevant computational contribution. The paper correctly identifies that a single cross-correlation architecture can handle both equivariant and bi-equivariant keyframe actions, and the ablation study supports the importance of the coarse-to-fine scheme and the in-hand segmentation. The main theoretical concern, however, is that the bi-equivariant data augmentation is implemented on off-manifold observation pairs, so the claimed symmetry of the physical keyframe policy is not actually learned or demonstrated. The empirical claims also need stronger statistical backing, since the main simulation table reports point estimates without error bars.

major comments (3)
  1. [Section IV-E, Eq. (6)] The bi-equivariant data augmentation transforms s and sih independently by g1 and g2, but Section IV-B defines the in-hand observation as sih = crop(T_ee^{-1} s), a deterministic function of s. For a physically realizable transformed observation, applying g1 to the scene changes the in-hand crop to crop(T_ee^{-1}(g1·s)), and applying a separate transformation g2 to the in-hand object also changes the occupied voxels of s. The augmented tuples (g1·s, g2·sih) are therefore almost never in the image of the observation pipeline, so the network is trained to be bi-equivariant on inputs that cannot arise at test time. This breaks the paper's claim that Eqs. (2) and (3) describe a symmetry of the physical keyframe task. The authors should either define an observation model in which s and sih are truly independent input channels, or use on-manifold augmentation that transforms the full scene and recomputes the crop, and should justify how the learned symmetry transfers to test-time observations.
  2. [Table I] The main simulation results are reported as single success-rate numbers without error bars, standard deviations, or seed counts. Because RLBench tasks are known to have high variance across seeds, the headline claim of an average >10% improvement over baselines is not statistically supported. The authors should report the number of evaluation seeds and dispersion measures, or at minimum provide a clear statement about the number of runs underlying each entry.
  3. [Section V-A, Baselines paragraph] The text first states that all baselines were retrained from open-source code with the same parameters, then says that the table includes the baselines' multi-task performance as reported in their original papers. Since Table I uses only the '-s' (single-task) suffix, it is unclear whether the baseline numbers come from the authors' own single-task runs or from prior multi-task publications. This ambiguity directly affects the comparability of the results and should be resolved in the revised version.
minor comments (3)
  1. [Section IV-D] The formula for the in-hand segmentation ground-truth mask m[x] is notationally ambiguous: expressions such as 'x ∈ sih > s′ih + v−1(sih < s′ih)' mix set membership and inequalities without clear definitions. Please rewrite with explicit Boolean conditions and define the set operations used.
  2. [Table I header] The header mentions 'row, pitch, and yaw'; this should be 'roll, pitch, and yaw'.
  3. [Figure 5 caption] The caption contains a typo: 'the button 3 tasks' should be 'the bottom 3 tasks'.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity found: the bi-equivariance claim is an explicit modeling assumption, the cross-correlation architecture realizes it constructively, and the headline results are external evaluations on held-out tasks.

full rationale

The paper's derivation chain is self-contained in the relevant sense: (1) Section IV-A assumes the optimal keyframe policy is bi-equivariant over independent scene and in-hand transformations (Eqs. 2 and 3); (2) Section IV-B designs a 3D cross-correlation action evaluator that realizes this symmetry when the key/query feature extractors are equivariant; (3) Sections V-A and V-B evaluate the resulting policy on held-out RLBench and real-world tasks. Step (2) is a constructive engineering realization, not a derivation of the physical property from the evaluation data, and step (3) is measured against out-of-distribution initial states rather than against the training loss. The key mathematical fact that cross-correlation is bi-equivariant is attributed to the authors' prior RSS paper [9], but it is a simple, externally verifiable property of group cross-correlation and is not fitted to the present paper's numbers, so it is independent support under the stated rules. The coarse-to-fine scheme is a computational decomposition of the same argmax operation; it is not a parameter fitted to the test set, and the ablation shows it helps empirically. No prediction is a renamed training target: the action values are trained on expert demonstrations and the reported successes are simulator/real-robot evaluations. The only notable weakness is in Section IV-E, where Eq. 6 augments s and sih with independently sampled g1 and g2 even though Section IV-B defines sih = crop(T_ee^{-1}·s), so some augmented pairs are not reachable by the observation pipeline. That is a correctness/manifold concern, not circular reasoning, and it does not make the empirical results equivalent to the training objective. Heavy self-citation exists, but it grounds the cross-correlation design in peer-reviewed prior work and does not constitute an unverified uniqueness chain. Overall, no circular step meeting the quoted-evidence threshold was found.

Assumptions & free parameters 3 free parameters · 3 assumptions · 0 invented entities

The method introduces no new physical entities. It relies on the assumed bi-equivariance of keyframe policies, rigid attachment of the in-hand object, and the known cross-correlation property. The main hand-chosen parameters are the action discretization grid and the in-hand crop size, which directly affect the reported success rates.

free parameters (3)
  • Action discretization resolution (voxel grid, rotation grid, C2F levels) = 24^3 voxels, 24 rotations, 3 levels refining 2^3 x 8; final 96^3 x 36864
    Chosen by hand to balance computation and precision; results depend on this resolution, as shown by the ablation where removing C2F drops performance by 57%.
  • In-hand crop size = 32^3 (from ablation footnote)
    Chosen to cover the grasped object; impacts segmentation quality and equivariance, especially when distractors are present.
  • Number of training iterations = 15k SGD steps
    Set to 15k for all methods to limit compute, but this may disadvantage baselines that benefit from longer training and makes the comparison protocol unclear.
assumptions (3)
  • domain assumption The optimal keyframe policy satisfies bi-equivariance: pi(g1*s, sih) = g1*pi(s, sih) and pi(s, g2*sih) = pi(s, sih)*g2^-1 (Eq. 2-3).
    Assumed ideal property of manipulation tasks; real tasks with gravity, non-rigid objects, or contact may violate it.
  • domain assumption The in-hand object is rigidly attached to the gripper, so any gripper transformation moves the object identically.
    Stated in Section IV-D as the basis for the segmentation and equivariance.
  • standard math 3D CNN backbones are translation equivariant and the cross-correlation operation preserves bi-equivariance when the feature extractors are equivariant.
    This is a known property of group convolution/cross-correlation, but its practical satisfaction depends on architectural choices and discretization.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Coarse-to-Fine 3D Keyframe Transporter." pith.science (2026). https://pith.science/paper/KSL3YSDG

@misc{pith2026250201773,
  author       = {Pith},
  title        = {Pith review of: Coarse-to-Fine 3D Keyframe Transporter},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/KSL3YSDG}},
  note         = {Machine review of arXiv:2502.01773}
}
read the original abstract

Recent advances in Keyframe Imitation Learning (IL) have enabled learning-based agents to solve a diverse range of manipulation tasks. However, most approaches ignore the rich symmetries in the problem setting and, as a consequence, are sample-inefficient. This work identifies and utilizes the bi-equivariant symmetry within Keyframe IL to design a policy that generalizes to transformations of both the workspace and the objects grasped by the gripper. We make two main contributions: First, we analyze the bi-equivariance properties of the keyframe action scheme and propose a Keyframe Transporter derived from the Transporter Networks, which evaluates actions using cross-correlation between the features of the grasped object and the features of the scene. Second, we propose a computationally efficient coarse-to-fine SE(3) action evaluation scheme for reasoning the intertwined translation and rotation action. The resulting method outperforms strong Keyframe IL baselines by an average of >10% on a wide range of simulation tasks, and by an average of 55% in 4 physical experiments.

Figures

Figures reproduced from arXiv: 2502.01773 by the authors.

Figure 1
Figure 1. The place module of Transporter Networks [8], [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Bi-equivariance in keyframe policies. Second column: [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Coarse-to-Fine 3D Keyframe Transporter inferences in two steps. Left: in step 1, the in-hand features sih are obtained by cropping and transforming the scene features s into the gripper frame. Then the key and query U-net networks map observations s and sih into pyramids of latent features f l s and f l ih respectively. Middle: in step 2, the action values Ql T : Gˆ l → R are computed through a coarse-to-fine cross-… view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Visualization of learned in-hand segmentation. [PITH_FULL_IMAGE:figures/full_fig_p004_4.png]
Figure 6
Figure 6. Figure 6: Real world tasks. Left: The first row shows a snap￾shot of 4 tasks, and the second row shows the distributions of the initial state. golf swing requires picking the club and aligning its head with the golf then pushing the ball to touch the goal. flip steak requires gr…

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 2 Pith papers

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

  1. SE(3)-Equivariant Diffusion Policy in Spherical Fourier Space

    cs.RO 2025-07 conditional novelty 6.0 of 10

    Continuous SE(3) equivariance is embedded in the policy by representing states, actions, and denoising steps in spherical Fourier space, improving generalization to novel 3D arrangements.

  2. EquAct: An SE(3)-Equivariant Multi-Task Transformer for Open-Loop Robotic Manipulation

    cs.RO 2025-05 conditional novelty 6.0 of 10

    EquAct embeds SE(3) equivariance into a multi-task keyframe manipulation transformer with language conditioning, improving spatial generalization over non-equivariant baselines.

Reference graph

Works this paper leans on

45 extracted references · 29 canonical work pages · cited by 2 Pith papers

  1. [1]

    Coarse-to- fine q-attention: Efficient learning for visual robotic manipulation via discretisation,

    S. James, K. Wada, T. Laidlow, and A. J. Davison, “Coarse-to- fine q-attention: Efficient learning for visual robotic manipulation via discretisation,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , 2022, pp. 13 739–13 748

  2. [2]

    Perceiver-actor: A multi- task transformer for robotic manipulation,

    M. Shridhar, L. Manuelli, and D. Fox, “Perceiver-actor: A multi- task transformer for robotic manipulation,” in Conference on Robot Learning. PMLR, 2023, pp. 785–799

  3. [3]

    Rvt: Robotic view transformer for 3d object manipulation,

    A. Goyal, J. Xu, Y . Guo, V . Blukis, Y .-W. Chao, and D. Fox, “Rvt: Robotic view transformer for 3d object manipulation,” CoRL, 2023

  4. [4]

    Act3d: 3d feature field transformers for multi-task robotic manipulation,

    T. Gervet, Z. Xian, N. Gkanatsios, and K. Fragkiadaki, “Act3d: 3d feature field transformers for multi-task robotic manipulation,” in Conference on Robot Learning . PMLR, 2023, pp. 3949–3965

  5. [5]

    Attention is all you need,

    A. Vaswani, “Attention is all you need,” Advances in Neural Informa- tion Processing Systems , 2017

  6. [6]

    Multilayer perceptron and neural networks,

    M.-C. Popescu, V . E. Balas, L. Perescu-Popescu, and N. Mastorakis, “Multilayer perceptron and neural networks,” WSEAS Transactions on Circuits and Systems , vol. 8, no. 7, pp. 579–588, 2009

  7. [7]

    On the continuity of ro- tation representations in neural networks,

    Y . Zhou, C. Barnes, J. Lu, J. Yang, and H. Li, “On the continuity of ro- tation representations in neural networks,” CoRR, vol. abs/1812.07035, 2018

  8. [8]

    Transporter networks: Rearranging the visual world for robotic manipulation,

    A. Zeng, P. Florence, J. Tompson, S. Welker, J. Chien, M. Attarian, T. Armstrong, I. Krasin, D. Duong, V . Sindhwani et al. , “Transporter networks: Rearranging the visual world for robotic manipulation,” in Conference on Robot Learning . PMLR, 2021, pp. 726–747

Show all 45 references
  1. [9]

    Equivariant Transporter Network,

    H. Huang, D. Wang, R. Walters, and R. Platt, “Equivariant Transporter Network,” in Proceedings of Robotics: Science and Systems , New York City, NY , USA, June 2022

  2. [10]

    Equivariant descriptor fields: SE(3)-equivariant energy-based models for end-to-end visual robotic manipulation learning,

    H. Ryu, H. in Lee, J.-H. Lee, and J. Choi, “Equivariant descriptor fields: SE(3)-equivariant energy-based models for end-to-end visual robotic manipulation learning,” in The Eleventh International Confer- ence on Learning Representations , 2023

  3. [11]

    Learning manipulation skills via hierar- chical spatial attention,

    M. Gualtieri and R. P. Jr., “Learning manipulation skills via hierar- chical spatial attention,” IEEE Trans. Robotics , vol. 36, no. 4, pp. 1067–1078, 2020

  4. [12]

    Mira: Mental imagery for robotic affordances,

    L. Yen-Chen, P. Florence, A. Zeng, J. T. Barron, Y . Du, W.-C. Ma, A. Simeonov, A. R. Garcia, and P. Isola, “Mira: Mental imagery for robotic affordances,” 2022

  5. [13]

    Diffusion-edfs: Bi-equivariant denoising generative modeling on se(3) for visual robotic manipulation,

    H. Ryu, J. Kim, H. An, J. Chang, J. Seo, T. Kim, Y . Kim, C. Hwang, J. Choi, and R. Horowitz, “Diffusion-edfs: Bi-equivariant denoising generative modeling on se(3) for visual robotic manipulation,” 2023

  6. [14]

    Fourier transporter: Bi-equivariant robotic manipulation in 3d,

    H. Huang, O. L. Howell, D. Wang, X. Zhu, R. Platt, and R. Walters, “Fourier transporter: Bi-equivariant robotic manipulation in 3d,” inThe Twelfth International Conference on Learning Representations , 2024

  7. [15]

    Q-attention: Enabling efficient learning for vision-based robotic manipulation,

    S. James and A. J. Davison, “Q-attention: Enabling efficient learning for vision-based robotic manipulation,” CoRR, 2021

  8. [16]

    Robotic pick-and-place of novel objects in clutter with multi-affordance grasping and cross- domain image matching,

    A. Zeng, S. Song, K.-T. Yu, E. Donlon, F. R. Hogan, M. Bauza, D. Ma, O. Taylor, M. Liu, E. Romo et al. , “Robotic pick-and-place of novel objects in clutter with multi-affordance grasping and cross- domain image matching,” in 2018 IEEE international conference on robotics and ...

  9. [17]

    Closing the loop for robotic grasping: A real-time, generative grasp synthesis approach,

    D. Morrison, J. Leitner, and P. Corke, “Closing the loop for robotic grasping: A real-time, generative grasp synthesis approach,” in Pro- ceedings of Robotics: Science and Systems , Pittsburgh, Pennsylvania, June 2018

  10. [18]

    Equivariant $q$ learning in spatial action spaces,

    D. Wang, R. Walters, X. Zhu, and R. Platt, “Equivariant $q$ learning in spatial action spaces,” in 5th Annual Conference on Robot Learning , 2021

  11. [19]

    Sample efficient grasp learning using equivariant models,

    X. Zhu, D. Wang, O. Biza, G. Su, R. Walters, and R. Platt, “Sample efficient grasp learning using equivariant models,” Proceedings of Robotics: Science and Systems (RSS) , 2022

  12. [20]

    On robot grasp learning using equivariant models,

    X. Zhu, D. Wang, G. Su, O. Biza, R. Walters, and R. Platt, “On robot grasp learning using equivariant models,” Autonomous Robots , 2023

  13. [21]

    Seil: Simulation-augmented equivariant imitation learning,

    M. Jia, D. Wang, G. Su, D. Klee, X. Zhu, R. Walters, and R. Platt, “Seil: Simulation-augmented equivariant imitation learning,” in 2023 IEEE International Conference on Robotics and Automation (ICRA) . IEEE, 2023, pp. 1845–1851

  14. [22]

    SO(2)-equivariant reinforcement learning,

    D. Wang, R. Walters, and R. Platt, “ SO(2)-equivariant reinforcement learning,” in International Conference on Learning Representations , 2022

  15. [23]

    On-robot learning with equivariant models,

    D. Wang, M. Jia, X. Zhu, R. Walters, and R. Platt, “On-robot learning with equivariant models,” in 6th Annual Conference on Robot Learning, 2022

  16. [24]

    Integrating symmetry into differentiable planning with steerable convolutions,

    L. Zhao, X. Zhu, L. Kong, R. Walters, and L. L. Wong, “Integrating symmetry into differentiable planning with steerable convolutions,” arXiv preprint arXiv:2206.03674 , 2022

  17. [25]

    Equivariant diffusion policy,

    D. Wang, S. Hart, D. Surovik, T. Kelestemur, H. Huang, H. Zhao, M. Yeatman, J. Wang, R. Walters, and R. Platt, “Equivariant diffusion policy,” in 8th Annual Conference on Robot Learning , 2024

  18. [26]

    Neural descriptor fields: Se (3)- equivariant object representations for manipulation,

    A. Simeonov, Y . Du, A. Tagliasacchi, J. B. Tenenbaum, A. Rodriguez, P. Agrawal, and V . Sitzmann, “Neural descriptor fields: Se (3)- equivariant object representations for manipulation,” in 2022 Interna- tional Conference on Robotics and Automation (ICRA) . IEEE, 2022, pp. 6394–6400

  19. [27]

    Edge grasp network: A graph-based se (3)-invariant approach to grasp detection,

    H. Huang, D. Wang, X. Zhu, R. Walters, and R. Platt, “Edge grasp network: A graph-based se (3)-invariant approach to grasp detection,” arXiv preprint arXiv:2211.00191 , 2022

  20. [28]

    Orbitgrasp: Se (3)-equivariant grasp learning,

    B. Hu, X. Zhu, D. Wang, Z. Dong, H. Huang, C. Wang, R. Walters, and R. Platt, “Orbitgrasp: Se (3)-equivariant grasp learning,” in 8th Annual Conference on Robot Learning , 2024

  21. [29]

    Imagination policy: Using generative point cloud models for learning manipulation policies,

    H. Huang, K. Schmeckpeper, D. Wang, O. Biza, Y . Qian, H. Liu, M. Jia, R. Platt, and R. Walters, “Imagination policy: Using generative point cloud models for learning manipulation policies,” arXiv preprint arXiv:2406.11740, 2024

  22. [30]

    Policy learning in se (3) action spaces,

    D. Wang, C. Kohler, and R. Platt, “Policy learning in se (3) action spaces,” in Conference on Robot Learning . PMLR, 2021, pp. 1481– 1497

  23. [31]

    U-net: Convolu- tional networks for biomedical image segmentation,

    O. Ronneberger, P. Fischer, and T. Brox, “U-net: Convolu- tional networks for biomedical image segmentation,” CoRR, vol. abs/1505.04597, 2015

  24. [32]

    3d u-net: Learning dense volumetric segmentation from sparse annotation,

    ¨O. C ¸ ic ¸ek, A. Abdulkadir, S. S. Lienkamp, T. Brox, and O. Ron- neberger, “3d u-net: Learning dense volumetric segmentation from sparse annotation,” CoRR, vol. abs/1606.06650, 2016

  25. [33]

    Healpix: A framework for high- resolution discretization and fast analysis of data distributed on the sphere,

    K. M. Gorski, E. Hivon, A. J. Banday, B. D. Wandelt, F. K. Hansen, M. Reinecke, and M. Bartelmann, “Healpix: A framework for high- resolution discretization and fast analysis of data distributed on the sphere,” The Astrophysical Journal , vol. 622, no. 2, p. 759, 2005

  26. [34]

    Rlbench: The robot learning benchmark & learning environment,

    S. James, Z. Ma, D. R. Arrojo, and A. J. Davison, “Rlbench: The robot learning benchmark & learning environment,” IEEE Robotics and Automation Letters , vol. 5, no. 2, pp. 3019–3026, 2020

  27. [35]

    What matters in learning from offline human demonstrations for robot manipula- tion,

    A. Mandlekar, D. Xu, J. Wong, S. Nasiriany, C. Wang, R. Kulkarni, L. Fei-Fei, S. Savarese, Y . Zhu, and R. Mart´ın-Mart´ın, “What matters in learning from offline human demonstrations for robot manipula- tion,” CoRR, vol. abs/2108.03298, 2021

  28. [36]

    Dynpoint: Dynamic neural point for view synthesis,

    K. Zhou, J.-X. Zhong, S. Shin, K. Lu, Y . Yang, A. Markham, and N. Trigoni, “Dynpoint: Dynamic neural point for view synthesis,” Advances in Neural Information Processing Systems , vol. 36, 2024

  29. [37]

    Reducing the barrier to entry of complex robotic software: a moveit! case study,

    D. Coleman, I. A. Sucan, S. Chitta, and N. Correll, “Reducing the barrier to entry of complex robotic software: a moveit! case study,” CoRR, vol. abs/1404.3785, 2014

  30. [38]

    Rrt-connect: An efficient approach to single-query path planning,

    J. Kuffner and S. LaValle, “Rrt-connect: An efficient approach to single-query path planning,” in Proceedings 2000 ICRA. Millennium Conference. IEEE International Conference on Robotics and Automa- tion. Symposia Proceedings (Cat. No.00CH37065) , vol. 2, 2000, pp. 995–1001 vol.2

  31. [39]

    curobo: Parallelized collision-free minimum-jerk robot motion generation,

    B. Sundaralingam, S. K. S. Hari, A. Fishman, C. Garrett, K. V . Wyk, V . Blukis, A. Millane, H. Oleynikova, A. Handa, F. Ramos, N. Ratliff, and D. Fox, “curobo: Parallelized collision-free minimum-jerk robot motion generation,” 2023

  32. [40]

    Two hybrid end-effector posture-maintaining and obstacle-limits avoidance schemes for redun- dant robot manipulators,

    Z. Zhang, S. Chen, X. Zhu, and Z. Yan, “Two hybrid end-effector posture-maintaining and obstacle-limits avoidance schemes for redun- dant robot manipulators,” IEEE Transactions on Industrial Informatics, vol. 16, no. 2, pp. 754–763, 2019

  33. [41]

    A program to build E(N)- equivariant steerable CNNs,

    G. Cesa, L. Lang, and M. Weiler, “A program to build E(N)- equivariant steerable CNNs,” in International Conference on Learning Representations, 2022

  34. [42]

    General E(2)-Equivariant Steerable CNNs,

    M. Weiler and G. Cesa, “General E(2)-Equivariant Steerable CNNs,” in Conference on Neural Information Processing Systems (NeurIPS) , 2019

  35. [43]

    Pointnet++: Deep hierarchical feature learning on point sets in a metric space,

    C. R. Qi, L. Yi, H. Su, and L. J. Guibas, “Pointnet++: Deep hierarchical feature learning on point sets in a metric space,” Advances in neural information processing systems , vol. 30, 2017

  36. [44]

    Chaineddiffuser: Unifying trajectory diffusion and keypose prediction for robotic manipulation,

    Z. Xian, N. Gkanatsios, T. Gervet, T.-W. Ke, and K. Fragkiadaki, “Chaineddiffuser: Unifying trajectory diffusion and keypose prediction for robotic manipulation,” in Conference on Robot Learning , 2023

  37. [45]

    Hierarchical diffusion policy for kinematics-aware multi-task robotic manipulation,

    X. Ma, S. Patidar, I. Haughton, and S. James, “Hierarchical diffusion policy for kinematics-aware multi-task robotic manipulation,” 2024

Pith tools

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