Pith. sign in

REVIEW 4 major objections 7 minor 22 references

GRoQ-LoCO: Generalist and Robot-agnostic Quadruped Locomotion Control using Offline Datasets

T0 review · 4 major / 7 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read A single offline-trained behavior-cloning policy controls multiple quadruped robots it never encountered during training, walking on flat ground and climbing stairs, with no robot-specific encoding and no test-time adaptation.

desk verdict A zero-shot multi-robot locomotion claim worth taking seriously, but the evidence is too thin and the recurrent training loop as written is broken—needs a proper rewrite and repeated-trial evaluation. read the letter →

arxiv 2505.10973 v3 pith:SARFFAA3 submitted 2025-05-16 cs.RO cs.AIcs.LG

classification cs.ROcs.AIcs.LG
keywords behaviorcloningquadrupedlocomotionzero-shottransferofflinelearninggeneralistpolicymulti-embodimentattentionnetworkterraingeneralization
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

The paper proposes GRoQ-LoCO, a generalist quadruped locomotion controller trained entirely offline by behavior cloning on expert demonstrations of two skills—flat-ground walking and stair climbing—collected from several different quadruped robots. The central claim is that dataset diversity, across both robot morphologies and locomotion behaviors, is what enables a single policy to transfer zero-shot to robots it never saw, including real hardware, with no robot-specific encoding and no test-time adjustment. The authors argue that offline imitation alone, without online RL or morphology conditioning, can fuse periodic and non-periodic behaviors into one network. If correct, this would make locomotion policies reusable and safer to train, since all data is collected in simulation and the resulting policy runs in real time on an embedded processor.

What carries the argument

An attention-augmented recurrent policy trained by behavior cloning forms the mechanism. Each proprioceptive observation (joint angles and velocities, previous two actions, gravity vector, angular velocity, commanded velocity) passes through a linear encoder with LayerNorm; sinusoidal positional embeddings are added, and multi-head self-attention runs twice—once over a sliding window of recent observations and once over a sliding window of recent GRU hidden states—with a final MLP head producing joint actions. Two design choices carry the argument: the absence of any robot identifier, forcing the policy to infer embodiment purely from dynamics, and an adaptive per-joint loss (a robust Huber-like term with a learned per-dimension variance) that re-weights joints according to modeling difficulty. The attention analyses are used to claim that the heads learn terrain-conditioned, robot-independent features.

What would settle it

Remove stair-climbing demonstrations from the training set for all robots and evaluate the trained policy on stairs; if stair traversal still succeeds, behavior fusion is not the mechanism behind zero-shot transfer. The paper's Setting 4 (stair data from Go1 only) already shows B2 and Aliengo failing at 17 cm, so a fully stair-free dataset would confirm that diversity in training data is what carries the transfer.

Watch

Extended reading notes

Core claim

The central claim is that a single policy trained by behavior cloning on offline expert demonstrations of two behaviors—periodic flat-terrain gait and non-periodic stair traversal—collected across several quadruped robots, generalizes zero-shot to unseen robot morphologies and to terrains (higher stairs, slopes) absent from training. The policy reads only proprioceptive observations (joint positions, velocities, previous actions, gravity vector, angular velocity, commanded velocity) and outputs actions at low latency on an embedded computer. No robot identifier, no morphology descriptor, and no test-time optimization is used. The paper reports that training configurations with full diversity (Setting 5, both behaviors and three morphologies) give the strongest zero-shot transfer, that stair-only robots extrapolate to out-of-distribution step heights, and that hardware deployment on the Unitree Go1 and Stoch5 succeeds without fine-tuning.

Load-bearing premise

The expert demonstrations are generated by two simulation RL controllers whose reward functions, domain randomization, terrain variation, and dataset size are not specified; if these demonstrations are too narrow or too simulation-specific, the zero-shot transfer seen in the paper would not occur.

Editorial extensions

If this is right

  • A single policy trained once in simulation can be deployed across a fleet of different quadruped models without retraining, fine-tuning, or robot identifier.
  • Stair-climbing ability transfers to robots that only contributed flat-ground demonstrations, indicating that periodic-gait experience alone generalizes to non-periodic terrain.
  • Policies trained with full diversity extrapolate beyond their training range: robots trained on 17 cm stairs later climb 25–29 cm steps.
  • Novel terrains absent from the training set (slopes up to 40°, both smooth and rough) are handled zero-shot by several robots.
  • The same policy runs in real time on an embedded computer and transfers to physical hardware without test-time optimization.

Reading between the lines

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

  • If the result holds beyond the tested kinematic range, behavior-cloned generalist policies could let the community pool demonstration data across robot models the way manipulation datasets do today; the paper's own limitation section flags the need to test more diverse leg geometries.
  • The learned per-joint variance in the adaptive loss doubles as a diagnostic of which joints are hardest to model per terrain, which could guide where to collect more demonstrations.
  • A direct test of the behavior-fusion hypothesis would be a training set that excludes one behavior entirely; the paper's Setting 4 partially does this and shows degraded transfer, suggesting that fusion is not automatic but depends on the diversity mix.
  • Combining this architecture with a lightweight exteroceptive input, as the authors list for future work, is a natural next step to move from reactive terrain handling to planned navigation.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 7 minor

Summary. The paper proposes GRoQ-LoCO, an attention-based behavior-cloning policy trained entirely offline on expert demonstrations of flat-ground and stair-climbing locomotion from multiple quadruped robots. The policy consumes only proprioceptive observations and command velocities, with no robot-specific identifiers. The authors claim zero-shot generalization to unseen robots (including hardware deployment on Unitree Go1 and Stoch5) and to out-of-distribution terrains such as higher stairs and slopes, across five training configurations with uneven distribution of skills across robots.

Significance. If the claims hold, the work would be a useful advance: it demonstrates that a single offline-trained policy can serve as a generalist controller across multiple quadruped morphologies and terrains without test-time adaptation or robot encoding, which goes beyond prior single-embodiment offline locomotion works. The framework is simple and the idea of behavior fusion from periodic and non-periodic gaits is appealing. However, the current evidence is not conclusive: the evaluation is largely binary, the dataset is underspecified, and a training-procedure detail appears internally inconsistent. The paper also includes a useful comparison with robot-encoding variants in the appendix, which supports the claim that explicit encodings hurt transfer.

major comments (4)
  1. [Section 2.4] The training procedure as written passes recurrent hidden states from a randomly sampled batch at epoch e to the next random batch at epoch e+1. Since each epoch samples a new batch of 400 trajectories and trajectories are padded to Nmax, the initial hidden state for a trajectory in epoch e+1 is the terminal hidden state of an unrelated trajectory from the previous epoch. This creates a training-time distribution of initial recurrent states that does not match the zero initial state used at deployment, and it is not the standard truncated BPTT described in the same section. The reported zero-shot results therefore cannot be attributed to the method as specified; please either correct the implementation description or retrain with proper episode-aligned hidden-state resetting and confirm the results.
  2. [Section 3.1 (Table 1) and Figure 7a] The central generalization claims rest on binary success/failure evaluations with no repeated trials, no success rates, and no statistical analysis. For example, Table 1 reports a single check/cross per robot per stair height, and Figure 7a similarly reports a single binary outcome per slope condition. Without variance estimates or repeated runs, it is impossible to distinguish genuine zero-shot transfer from chance or from favorable single runs. Please report aggregate statistics, such as mean success rates over multiple seeds and trials, with error bars or confidence intervals.
  3. [Section 2.1] The expert demonstrations are generated by two RL controllers that are never specified: no reward functions, domain randomization, terrain distributions, episode lengths, or data volumes per robot are given. Since the entire method is behavior cloning from these datasets, the generalization claim cannot be assessed or reproduced without this information. Please include expert training details, dataset statistics, and a description of the diversity across robots and terrains, or make the dataset publicly available with full documentation.
  4. [Section 3.2] The hardware deployment results on Go1 and Stoch5 are anecdotal ('demonstrated zero-shot transfer', 'robust walking') with no quantitative measurements such as success rates over repeated runs, gait frequency, joint torques, or failure cases. As this is the paper's most direct evidence for sim-to-real transfer, it needs to be quantified and compared against baselines or at least reported with clear metrics and experimental protocol.
minor comments (7)
  1. [Table 6 and Appendix D.1] Table 6 reports 'Embedding Dimension (emb dim) = 64' while Appendix D.1 states 'emb dim = 128', and Table 6 describes a 2-layer MLP head while Appendix D.1 says a 3-layer MLP; please reconcile these values so the architecture is reproducible.
  2. [Section 2.2] The text says 'The most recent k outputs are aggregated' but k is never defined; the window size W=100 appears only in Appendix D.2. Define k in the main text and ensure consistent use of k versus W.
  3. [Figure 2 caption] The caption refers to 'GROQLoco' while the model is consistently named GRoQ-LoCO elsewhere; please standardize the name.
  4. [Section 2.3] The adaptive loss uses 'exp(-log σ)' which equals 1/σ; please simplify the expression or explain the intended adaptive weighting, and specify the initialization of the learnable parameter σ.
  5. [Appendix B] The text refers to 'Stoch5(ZO)' in Figure 8 and Figure 9 captions, which appears to be a typo for 'ZS' (zero-shot).
  6. [Appendix D.3] The attention pattern figures appear as placeholders with no actual plots; please include the figures or remove the section, as the current presentation cannot be evaluated.
  7. [References] Reference [9] has an incomplete author field (a missing name before 'Gajewski'); please correct it.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the zero-shot holdout evaluations are externally defined and not reconstructed from the training loss or self-citations.

full rationale

GRoQ-LoCO's central claim is that a behavior-cloned policy trained on multi-robot, multi-terrain expert demonstrations transfers zero-shot to unseen robots and terrains. The training objective (Sec. 2.3) is a standard adaptive regression loss on expert actions, and the evaluation (Sec. 3.1, Tables 1-4) is an external holdout: ZS robots are excluded from training, and 21-29 cm stairs and 25-40 degree slopes are labeled OOD. No equation in the paper defines the target result in terms of the fitted loss or a self-cited uniqueness theorem. The only self-citation, [7] (BiRoiDiff), appears in a related-work list and is not load-bearing. The explicit limitation in Sec. 4 that the method targets comparable kinematic setups narrows, rather than circularly forces, the claim. Two non-circular weaknesses exist: Sec. 2.1 does not specify the expert RL controllers' rewards, randomization, terrain mix, or data volume, and Sec. 2.4 describes carrying hidden states across independently sampled batches, which could cause a train/deploy recurrent-state mismatch; these are reproducibility and correctness risks, not definitional circularity. Accordingly, no circular step is identified.

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

The central claim is empirical, not derivational. No new physical entities or fitted scientific constants are introduced. The main unstated support is the quality and diversity of the offline dataset, which is not described.

free parameters (4)
  • delta (adaptive loss scale) = 0.5
    Fixed scaling hyperparameter in the adaptive Huber-like loss (Sec 2.3). Chosen by hand; not fitted to external data.
  • attention window size W = 100
    History window for both observation and GRU attention (Appendix D.2). Hand-set.
  • embedding dimension (reported inconsistently) = 64 in Table 6, 128 in Appendix D.1
    Architecture size, hand-set; the inconsistency itself is a clarity issue.
  • warmup epochs Ew = 50
    Training schedule choice to reset hidden states (Sec 2.4).
assumptions (4)
  • domain assumption Simulation dynamics used to generate expert demonstrations are faithful enough to real robot dynamics for zero-shot sim-to-real transfer.
    The paper relies on sim data from unspecified simulators and controllers and then deploys on real Go1 and Stoch5 (Sec 3.2, Hardware deployment).
  • domain assumption Expert RL controllers used for data collection produce demonstrations that are sufficiently optimal and diverse for behavior cloning to recover good locomotion.
    No description of the expert controllers, their reward functions, or domain randomization is given (Sec 2.1).
  • domain assumption Proprioceptive observations (joint positions, velocities, previous actions, gravity vector, angular velocity, command) contain enough information to disambiguate robot morphology and dynamics without any robot identifier.
    The core robot-agnostic claim depends on this premise (Sec 2.1).
  • domain assumption Binary checkmark success on a single run of 8 stairs is a sufficient performance measure.
    Table 1 reports success and failure without trial counts, variance, or failure mode definitions.

how reviews work

0 comments
Cite this review

Pith. "Pith review of GRoQ-LoCO: Generalist and Robot-agnostic Quadruped Locomotion Control using Offline Datasets." pith.science (2026). https://pith.science/paper/SARFFAA3

@misc{pith2026250510973,
  author       = {Pith},
  title        = {Pith review of: GRoQ-LoCO: Generalist and Robot-agnostic Quadruped Locomotion Control using Offline Datasets},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/SARFFAA3}},
  note         = {Machine review of arXiv:2505.10973}
}
read the original abstract

Recent advancements in large-scale offline training have demonstrated the potential of generalist policy learning for complex robotic tasks. However, applying these principles to legged locomotion remains a challenge due to continuous dynamics and the need for real-time adaptation across diverse terrains and robot morphologies. In this work, we propose GRoQ-LoCO, a scalable, attention-based framework that learns a single generalist locomotion policy across multiple quadruped robots and terrains, relying solely on offline datasets. Our approach leverages expert demonstrations from two distinct locomotion behaviors - stair traversal (non-periodic gaits) and flat terrain traversal (periodic gaits) - collected across multiple quadruped robots, to train a generalist model that enables behavior fusion. Crucially, our framework operates solely on proprioceptive data from all robots without incorporating any robot-specific encodings. The policy is directly deployable on an Intel i7 nuc, producing low-latency control outputs without any test-time optimization. Our extensive experiments demonstrate zero-shot transfer across highly diverse quadruped robots and terrains, including hardware deployment on the Unitree Go1, a commercially available 12kg robot. Notably, we evaluate challenging cross-robot training setups where different locomotion skills are unevenly distributed across robots, yet observe successful transfer of both flat walking and stair traversal behaviors to all robots at test time. We also show preliminary walking on Stoch 5, a 70kg quadruped, on flat and outdoor terrains without requiring any fine tuning. These results demonstrate the potential of offline, data-driven learning to generalize locomotion across diverse quadruped morphologies and behaviors.

Figures

Figures reproduced from arXiv: 2505.10973 by the authors.

Figure 1
Figure 1. Frames of Go1 robot traversing 15cm stairs. The policy showed zero shot transfer to Go1 [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Offline data generation pipeline used in [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Model architecture of GRoQ-LoCO, showing the sequential processing pipeline with observation encoding, causal attention, GRU-based temporal modeling, and MLP action prediction. 2 Methodology In this section, we present our data collection strategy, the architecture of the proposed behavior cloning policy, the adaptive loss formulation, and the training procedure. Our approach enables a single policy to learn differe… view at source ↗
Figures from the paper (12 more)
Figure 5
Figure 5. Figure 5: Go1(ZS) Foot contact sequence on Flat terrain- black regions are periods of foot contact [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 6
Figure 6. Figure 6: Stoch3(SO) Foot contact sequence on Flat terrain- black regions are periods of foot contact [PITH_FULL_IMAGE:figures/full_fig_p007_6.png]
Figure 7
Figure 7. Figure 7: Binary performance assessment and visual evaluation of zero-shot generalization to novel [PITH_FULL_IMAGE:figures/full_fig_p008_7.png]
Figure 8
Figure 8. Figure 8: Stoch5(ZO) Foot contact sequence on Flat terrain - No Robot Encoding [PITH_FULL_IMAGE:figures/full_fig_p012_8.png]
Figure 9
Figure 9. Figure 9: Stoch5(ZO) Foot contact sequence on Flat terrain - Robot Encoding [PITH_FULL_IMAGE:figures/full_fig_p012_9.png]
Figure 10
Figure 10. Figure 10: Kernel density plots of residual errors across representative joints. Subfigure (a) shows [PITH_FULL_IMAGE:figures/full_fig_p013_10.png]
Figure 11
Figure 11. Figure 11: Mean GRU Attention Curves for Flat Terrain (17cm) Across Robots and Selected Heads Robot \ Head Head 0 Head 1 Go1 (Small) Stoch3 (Medium) B1 (Large) [PITH_FULL_IMAGE:figures/full_fig_p016_11.png]
Figure 12
Figure 12. Figure 12: Mean GRU Attention Curves for Stair Terrain (17cm) Across Robots and Selected Heads 16 [PITH_FULL_IMAGE:figures/full_fig_p016_12.png]
Figure 13
Figure 13. Figure 13: Mean GRU Attention Curves for Slope Terrain (Rough Slopes - 25◦ ) Across Robots and Selected Heads Robot \ Head Head 0 Head 1 Go1 (Small) Stoch3 (Medium) B1 (Large) [PITH_FULL_IMAGE:figures/full_fig_p017_13.png]
Figure 14
Figure 14. Figure 14: Mean OBS Attention Curves for Flat Terrain Across Robots and Selected Heads 17 [PITH_FULL_IMAGE:figures/full_fig_p017_14.png]
Figure 15
Figure 15. Figure 15: Mean OBS Attention Curves for Stair Terrain Across Robots and Selected Heads Robot \ Head Head 0 Head 1 Go1 (Small) Stoch3 (Medium) B1 (Large) [PITH_FULL_IMAGE:figures/full_fig_p018_15.png]
Figure 16
Figure 16. Figure 16: Mean OBS Attention Curves for Slope Terrain (Rough Slopes - 25◦ ) Across Robots and Selected Heads 18 [PITH_FULL_IMAGE:figures/full_fig_p018_16.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

22 extracted references · 8 canonical work pages

  1. [1]

    Brohan et al

    A. Brohan et al. Rt-1: Robotics transformer for real-world control at scale. arXiv preprint arXiv:2212.06817, 2022. URL https://arxiv.org/abs/2212.06817

  2. [2]

    Brohan et al

    A. Brohan et al. Rt-2: Vision-language-action models transfer web knowledge to robotic control. arXiv preprint arXiv:2307.15818 , 2023. URL https://arxiv.org/abs/2307. 15818

  3. [3]

    Open x-embodiment: Robotic learning datasets and rt-x models

    Open X-Embodiment Collaboration. Open x-embodiment: Robotic learning datasets and rt-x models. In Proceedings of the 2024 IEEE International Conference on Robotics and Automa- tion (ICRA), pages 6892–6903. IEEE, 2024. doi:10.1109/ICRA57147.2024.10611477. URL https://arxiv.org/abs/2310.08864

  4. [4]

    Bousmalis, G

    K. Bousmalis, G. Vezzani, D. Rao, C. M. Devin, A. X. Lee, M. B. Villalonga, T. Davchev, Y . Zhou, A. Gupta, A. Raju, A. Laurens, C. Fantacci, V . Dalibard, M. Zambelli, M. F. Martins, R. Pevceviciute, M. Blokzijl, M. Denil, N. Batchelor, T. Lampe, E. Parisotto, K. ona, S. Reed, S. G. Colmenarejo, J. Scholz, A. Abdolmaleki, O. Groth, J.-B. Regli, O. Sushko...

  5. [5]

    Reske, J

    A. Reske, J. Carius, Y . Ma, F. Farshidian, and M. Hutter. Imitation learning from mpc for quadrupedal multi-gait control. In Proceedings of the 2021 IEEE International Conference on Robotics and Automation (ICRA) , pages 5014–5020. IEEE, 2021. doi:10.1109/ICRA48506. 2021.9561214. URL https://arxiv.org/abs/2103.14331

  6. [6]

    Huang, Y

    X. Huang, Y . Chi, R. Wang, Z. Li, X. B. Peng, S. Shao, B. Nikolic, and K. Sreenath. Diffuse- loco: Real-time legged locomotion control with diffusion from offline datasets. In P. Agrawal, O. Kroemer, and W. Burgard, editors, Proceedings of The 8th Conference on Robot Learning, volume 270 of Proceedings of Machine Learning Research, pages 1567–1589. PMLR,...

  7. [7]

    Mothish, M

    G. Mothish, M. Tayal, and S. Kolathaya. Birodiff: Diffusion policies for bipedal robot loco- motion on unseen terrains. In Proceedings of the 10th Indian Control Conference (ICC), pages 9 385–390. IEEE, 2024. doi:10.1109/icc64753.2024.10883743. URL https://arxiv.org/ abs/2407.05424

  8. [8]

    O’Mahoney, A

    R. O’Mahoney, A. L. Mitchell, W. Yu, I. Posner, and I. Havoutis. Offline adaptation of quadruped locomotion using diffusion models. arXiv preprint arXiv:2411.08832, 2024. URL https://arxiv.org/abs/2411.08832

Show all 22 references
  1. [9]

    Solving multi-goal robotic tasks with decision transformer

    Gajewski et al. Solving multi-goal robotic tasks with decision transformer. In arXiv, 2024. URL https://arxiv.org/abs/2410.06347

  2. [10]

    Dong et al

    W. Dong et al. Optimizing robotic manipulation with decision-rwkv: A recurrent se- quence modeling approach for lifelong learning. In Journal of Computing and Informa- tion Science in Engineering , 2025. URL https://asmedigitalcollection.asme.org/ computingengineering/article/...

  3. [11]

    Hwangbo, J

    J. Hwangbo, J. Lee, A. Dosovitskiy, D. Bellicoso, V . Tsounis, V . Koltun, and M. Hutter. Learning agile and dynamic motor skills for legged robots. Science Robotics, 4(26):eaau5872,

  4. [12]

    Kumar, Z

    A. Kumar, Z. Fu, D. Pathak, and J. Malik. Rma: Rapid motor adaptation for legged robots. In Proceedings of Robotics: Science and Systems (RSS), 2021. doi:10.15607/RSS.2021.XVII

  5. [13]

    Xue et al

    Y . Xue et al. Learning vision-guided quadrupedal locomotion end-to-end with a locomotion transformer. In Proceedings of the 2021 Conference on Robot Learning, 2021. URL https: //arxiv.org/abs/2107.03996

  6. [14]

    URL https://arxiv.org/abs/2107.04034

  7. [15]

    Wang et al

    Y . Wang et al. Amp in the wild: Learning robust, agile, natural legged locomotion skills.arXiv preprint arXiv:2304.10888, 2023. URL https://arxiv.org/abs/2304.10888

  8. [16]

    Hoeller et al

    D. Hoeller et al. Anymal parkour: Learning agile navigation for quadrupedal robots. In Proceedings of the 7th Conference on Robot Learning , 2023. URL https://arxiv.org/ abs/2306.14874

  9. [17]

    Kim, Y .-H

    G. Kim, Y .-H. Lee, and H.-W. Park. A learning framework for diverse legged robot locomotion using barrier-based style rewards. arXiv preprint arXiv:2409.15780 , 2024. URL https: //arxiv.org/abs/2409.15780

  10. [18]

    J. Long, Z. Wang, Q. Li, L. Cao, J. Gao, and J. Pang. Hybrid internal model: Learning agile legged locomotion with simulated robot response. In Proceedings of the Twelfth International Conference on Learning Representations (ICLR) , 2024. URL https://openreview.net/ forum?id=9...

  11. [19]

    Bohlinger, G

    N. Bohlinger, G. Czechmanowski, M. Krupka, P. Kicki, K. Walas, J. Peters, and D. Tateo. One policy to run them all: an end-to-end learning approach to multi-embodiment locomotion. In Proceedings of the 8th Conference on Robot Learning (CoRL), 2024. URL https://arxiv. org/abs/2...

  12. [20]

    G. Feng, H. Zhang, Z. Li, X. B. Peng, B. Basireddy, L. Yue, Z. Song, L. Yang, Y . Liu, K. Sreenath, and S. Levine. Genloco: Generalized locomotion controllers for quadrupedal robots. In L. P. Kaelbling, D. Kragic, and K. Fragkiadaki, editors, Proceedings of the 6th Conference ...

  13. [22]

    Z. Luo, X. Li, R. Huang, Z. Shu, E. Xiao, and Y . Dong. Moral: Learning morphologically adaptive locomotion controller for quadrupedal robots on challenging terrains. IEEE Robotics and Automation Letters, 9(5):4019–4026, 2024. doi:10.1109/lra.2024.3375086. URL https: //ieeexpl...

  14. [2019]

    URL https://www.science.org/doi/10.1126/ scirobotics.aau5872

    doi:10.1126/scirobotics.aau5872. URL https://www.science.org/doi/10.1126/ scirobotics.aau5872

Pith tools

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