Pith. sign in

REVIEW 3 major objections 5 minor 8 cited by

RSL-RL: A Learning Library for Robotics Research

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

Pith's one-line read RSL-RL argues that a compact, GPU-only RL library centered on PPO and DAgger-style behavior cloning can meet most robotics research needs, including sim-to-real transfer.

desk verdict RSL-RL is a real, widely used library and the paper explains it clearly, but the high-throughput claim is asserted, not shown, and the validation rests on a chain of prior papers. read the letter →

arxiv 2509.10771 v1 pith:LETPGUWX submitted 2025-09-13 cs.RO cs.LG

classification cs.ROcs.LG
keywords reinforcementlearningroboticspolicydistillationPPObehaviorcloningGPU-onlytrainingsim-to-realtransfersparse-rewardexploration
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

RSL-RL is an open-source reinforcement learning library whose stated purpose is to serve robotics research specifically, in contrast to general-purpose RL frameworks. The paper argues that a compact, modifiable codebase built around PPO plus DAgger-style behavior cloning, with GPU-only training and robotics-specific auxiliary techniques, is enough to cover a large share of robot learning practice. It claims this design yields high throughput in large-scale simulation and has been validated through its use in published simulation and real-world robot results. The practical point is that robotics researchers should be able to take one small library, modify a few files, and go from idea to trained policy in minutes rather than assembling heavy infrastructure.

What carries the argument

The load-bearing piece is the three-part architecture—Runner, Algorithm, Network—with a same-step-reset environment interface and nested-tensor observation containers. This structure is what makes the codebase modifiable in a few files and keeps the training loop GPU-only and batched. The PPO implementation carries the throughput; the DAgger-style behavior-cloning loop carries sim-to-real distillation; symmetry augmentation and subset-state curiosity carry the robotics-specific sample-efficiency gains.

What would settle it

Run the repository's default PPO example on the same GPU simulator and hardware class as the paper's cited 'walking in minutes' result, and measure wall-clock time until a walking gait appears. If training takes hours rather than minutes, or if multi-GPU scaling is not observed, the high-throughput premise fails.

Watch

Extended reading notes

Core claim

The paper argues that a deliberately narrow RL library can serve the robotics community better than a broad framework. Concretely, RSL-RL implements exactly two algorithms—PPO for on-policy learning and a DAgger-style behavior-cloning routine for distilling a trained teacher into a deployable student—plus symmetry augmentation and a partial-state curiosity reward. The framework is organized into three independently modifiable components (Runner, Algorithm, Network) with an environment interface that passes observations as nested tensor containers, and training runs entirely on GPU with native multi-GPU and multi-node support. The claimed payoff is that this combination has produced walking p

Load-bearing premise

The central claim assumes that the throughput and real-world successes credited to RSL-RL by the cited prior applications reflect the library as packaged, not bespoke modifications each project made.

Editorial extensions

If this is right

  • If the paper is right, a robotics lab can train a locomotion or manipulation policy on a single GPU in minutes and deploy it on hardware through the built-in teacher-student distillation path.
  • New robot-learning tasks can be tackled by editing at most the runner, algorithm, and network files, lowering the barrier to reproducing and extending published results.
  • Because the library integrates with several GPU-accelerated simulators, it can serve as a common baseline that makes published robotics results easier to compare.
  • The included symmetry augmentation and curiosity reward become reusable building blocks, reducing manual reward shaping on sparse-reward and symmetric-robot problems.
  • Researchers who need to benchmark many RL algorithms would still require a broader tool; the paper is explicit that RSL-RL is intentionally not designed for that.

Reading between the lines

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

  • If RSL-RL's throughput claim is general, its simple interface could make it a natural testbed for scaling studies: sweeping batch size and GPU count to find where wall-clock performance saturates would be a direct extension the paper does not report.
  • The partial-state curiosity variant suggests a broader design principle: intrinsic rewards can focus on task-relevant degrees of freedom rather than the full state; testing this on non-locomotion sparse-reward tasks would be a cheap next experiment.
  • The paper's emphasis on PPO plus distillation implies that many real deployments do not need off-policy or model-based algorithms—a hypothesis worth testing by comparing policy performance and engineering cost on the same hardware.
  • Because no standalone imitation-learning path is included, extending the behavior-cloning routine into a demonstration-only pipeline would let the library serve tasks where no RL-trained teacher exists.
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 / 5 minor

Summary. The paper presents RSL-RL, a PyTorch-based reinforcement-learning library aimed at robotics researchers. It describes a deliberately minimal design with three extension points (runners, algorithms, networks), two main algorithms (PPO and DAgger-style behavior cloning), auxiliary techniques (symmetry augmentation and RND-based curiosity), logging and distributed-training utilities, and integration with several GPU-accelerated simulators. The manuscript asserts that the library is compact, easily modifiable, high-throughput, and validated in both simulation and real-world experiments. However, these assertions are not accompanied by any quantitative measurements, benchmarks, training curves, or runtime comparisons within the paper itself; validation is deferred to a list of external publications, many from the same research group. The paper includes a brief discussion of intended use and limitations.

Significance. RSL-RL is a real, publicly available library that has been used in several well-known robotics results, and the paper provides a useful high-level description of its design and components. If the central claim of high-throughput, validated utility were supported by measurements, the paper would be a valuable system description for robotics practitioners selecting a lightweight RL codebase. As it stands, however, the paper functions more as an announcement and an adoption list than as a self-contained evaluation. The absence of direct benchmarks and version pinning creates a reproducibility gap that prevents the reader from verifying the current release against the claimed properties. The authors are in a strong position to close this gap by adding experiments and precise version metadata.

major comments (3)
  1. [Abstract and §1 (Introduction)] The abstract and the bullet point 'High-throughput training' in §1 assert that RSL-RL achieves high-throughput performance, but the manuscript contains no quantitative evidence: no samples-per-second or wall-clock measurements, no hardware description, no training curves, and no comparison with existing libraries such as rl_games, CleanRL, or TorchRL. Section 4 lists external papers, but those cannot validate the current release without a version/commit pin. Please add a benchmark section, at minimum for a canonical legged-locomotion task, reporting throughput and training time, and give the exact commit or release version of the code used.
  2. [§4 (Applications in Research)] The validation-by-publication argument is structurally weak because most cited applications originate from the same group (e.g., Rudin et al. 2022, Schwarke et al. 2023, Hoeller et al. 2024, He et al. 2025). No mapping is provided between each cited work and the RSL-RL version/API described in this paper, so the current codebase could have diverged from those forks. To support the claim of 'effectiveness validated,' state the version or commit used in each external study and include at least one reproducibility test or independent evaluation against the current release.
  3. [§2.2 (Auxiliary Techniques)] The RND modification is described only qualitatively: 'computes the reward using only a subset of the full state of the system.' There is no equation, no detail about how the subset is selected, and no ablation or reference supporting the claimed benefit over standard RND. Since this is presented as a distinguishing feature, please specify the formulation formally and provide evidence, or cite a publication that contains the full details.
minor comments (5)
  1. [Abstract] The repository URL appears as 'rsl rl' because of a line break; fix the URL formatting so it reads 'https://github.com/leggedrobotics/rsl_rl'.
  2. [Figure 1] The figure has no detailed caption. It would help to annotate the data flow between Runners, Algorithms, and Networks, and to indicate which components users typically modify.
  3. [References] Several bibliography entries contain encoding artifacts, e.g., the author name 'Jo ˜AG ¸ o GM Ara˜Aˇ sjo' in the CleanRL reference. Please regenerate or clean the reference list.
  4. [§3 (Implementation Details)] The term 'same-step reset mode' in the VecEnv interface is not defined. Since this is part of the environment contract, give a brief explanation or a pointer to Gymnasium's terminology.
  5. [§2.3 (Utilities)] The claim of 'distributed training over multiple nodes and multi-GPUs' has no configuration details or measured scaling behavior. At minimum, describe the launching mechanism and any known limitations.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity; the paper's performance and validation claims rest on external published applications, not on an in-paper derivation that reduces to its inputs.

full rationale

This manuscript is a software description, not a derivation or prediction paper. The central claims—compact design, high-throughput GPU-only training, and demonstrated utility—are presented as properties of an open-source codebase. The paper does not fit any parameter, define a quantity in terms of the quantity it claims to predict, or invoke a uniqueness theorem. Its strongest empirical assertions, such as 'RSL-RL achieves high-throughput performance' and 'effectiveness has been validated in both simulation benchmarks and in real-world robotic experiments,' are supported in Section 4 by a list of externally published peer-reviewed papers, including several from the same ETH/NVIDIA group. That reliance on prior work is a normal evidentiary pattern for a library paper: the cited papers contain their own experiments, benchmarks, and sim-to-real results, and they use the library as a tool rather than presupposing the library's performance claims. The overlap in authorship is a credibility and reproducibility concern, not a logical circularity. The absence of an in-manuscript throughput benchmark, a version pin, or a reproduction script is a verification gap—correctness risk, not a circularity risk. Because no load-bearing step reduces by construction to an input or to an unverified self-citation chain, the paper receives a circularity score of 0.

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

The paper is a software description, so it has no fitted constants or invented physical entities. Its load-bearing assumptions are domain choices about what robotics researchers need and about the validity of the citation chain used as evidence.

assumptions (4)
  • domain assumption Compactness and modifiability are the primary needs of robotics researchers using RL libraries.
    The paper's design philosophy (§1) prioritizes compact code; this is an assumption about user needs, not empirically established in the paper.
  • domain assumption PPO and DAgger-style BC are sufficient for the majority of robotics RL tasks.
    The library deliberately includes only these two algorithms (§2.1, §5), assuming they cover the community's needs.
  • domain assumption GPU-only training is the appropriate target; CPU support is unnecessary.
    Stated in Abstract and §2.3 as a design choice, with no comparison to CPU or mixed pipelines.
  • domain assumption Prior publications cited in §4 used the library in a way that validates its design.
    The paper uses these citations as evidence without reproducing their experiments.

how reviews work

0 comments
Cite this review

Pith. "Pith review of RSL-RL: A Learning Library for Robotics Research." pith.science (2026). https://pith.science/paper/LETPGUWX

@misc{pith2026250910771,
  author       = {Pith},
  title        = {Pith review of: RSL-RL: A Learning Library for Robotics Research},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/LETPGUWX}},
  note         = {Machine review of arXiv:2509.10771}
}
read the original abstract

RSL-RL is an open-source Reinforcement Learning library tailored to the specific needs of the robotics community. Unlike broad general-purpose frameworks, its design philosophy prioritizes a compact and easily modifiable codebase, allowing researchers to adapt and extend algorithms with minimal overhead. The library focuses on algorithms most widely adopted in robotics, together with auxiliary techniques that address robotics-specific challenges. Optimized for GPU-only training, RSL-RL achieves high-throughput performance in large-scale simulation environments. Its effectiveness has been validated in both simulation benchmarks and in real-world robotic experiments, demonstrating its utility as a lightweight, extensible, and practical framework to develop learning-based robotic controllers. The library is open-sourced at: https://github.com/leggedrobotics/rsl_rl.

Figures

Figures reproduced from arXiv: 2509.10771 by the authors.

Figure 1
Figure 1. Overview of the framework. RSL-RL consists of three main com￾ponents: Runners, Algorithms, and Networks, which can be easily modified in￾dependently. The framework comes with support for common logging choices and useful extensions for robotics. ©2025 Clemens Schwarke, Mayank Mittal, Nikita Rudin, David Hoeller, and Marco Hutter. License: CC-BY 4.0, see https://creativecommons.org/licenses/by/4.0/. arXiv:2509.10771v… view at source ↗

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 8 Pith papers

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

  1. Open-DiffLoco: Open-Source Differentiable Learning for Deployable Blind Quadruped Locomotion

    cs.RO 2026-08 conditional novelty 6.0 of 10

    Differentiable simulation with SHAC and a simplified reward set trains deployable blind quadruped policies that transfer to a real Unitree Go2, plus a new critic-Jacobian supervision method (JAVE).

  2. Learning Adaptive Multi-Task Guidance, Navigation, and Control via Hypernetworks

    cs.RO 2026-07 conditional novelty 6.0 of 10

    A hypernetwork maps continuous physics-informed task embeddings to shared actor-critic weights, mastering four orbital GNC tasks and composing novel ones without retraining, with sim-to-real on a floating platform.

  3. Sling2Sim2Real: One-Shot Elastic System Identification for Non-Destructive Slingshot Policy Learning

    cs.RO 2026-07 conditional novelty 6.0 of 10

    A one-shot Real2Sim2Real framework fits five elastic parameters from a single non-destructive interaction and zero-shot transfers a slingshot RL policy to a real Franka arm.

  4. Cross-Embodiment Robot Manipulation via a Unified Hand Action Space

    cs.RO 2026-07 conditional novelty 6.0 of 10

    UHAS maps hand actions to deformations of a shared unit sphere and recovers joint commands via cascade IK, enabling multi-hand RL, zero-shot transfer, and modest real-world cube reorientation on LEAP and Allegro.

  5. SERNF: Sample-Efficient Real-World Dexterous Policy Fine-Tuning via Action-Chunked Critics and Normalizing Flows

    cs.RO 2026-02 unverdicted novelty 6.0 of 10

    SERNF fine-tunes dexterous manipulation policies on real hardware by pairing normalizing-flow policies with action-chunked critics and conservative off-policy RL.

  6. Pretraining in Actor-Critic Reinforcement Learning for Locomotion

    cs.RO 2025-10 conditional novelty 6.0 of 10

    Pretraining an inverse dynamics model on task-agnostic exploration data and using its weights to initialize PPO actor and critic improves sample efficiency by ~37% and final performance by ~7% across nine simulated lo...

  7. PAC-MAN: Perception-Aware CBF-RL for Whole-Body Safety in Humanoid Dodgeball

    cs.RO 2026-07 conditional novelty 5.0 of 10

    Link-CBF training with masked onboard depth lets a humanoid dodge whole-body contact near oracle rates in sim and on 95% of real throws, while stronger Joint-CBF needs better ball observability.

  8. End-to-End Crop Row Navigation via LiDAR-Based Deep Reinforcement Learning

    cs.RO 2025-09 conditional novelty 5.0 of 10

    Raw 3D LiDAR, compressed into flattened voxel maps, trains a reinforcement learning policy that reliably follows straight crop rows in simulation and degrades on curvier rows.

Reference graph

Works this paper leans on

43 extracted references · 6 linked inside Pith · cited by 8 Pith papers

  1. [1]

    Tensorflow: Large-scale machine learning on heterogeneous distributed systems

    Mart \' n Abadi, Ashish Agarwal, Paul Barham, Eugene Brevdo, Zhifeng Chen, Craig Citro, Greg S Corrado, Andy Davis, Jeffrey Dean, Matthieu Devin, et al. Tensorflow: Large-scale machine learning on heterogeneous distributed systems. arXiv e-prints, pages arXiv--1603, 2016

  2. [2]

    Pedipulate: Enabling manipulation skills using a quadruped robot’s leg

    Philip Arm, Mayank Mittal, Hendrik Kolvenbach, and Marco Hutter. Pedipulate: Enabling manipulation skills using a quadruped robot’s leg. In Proceedings of the IEEE International Conference on Robotics and Automation (ICRA), pages 5717--5723. IEEE, 2024

  3. [3]

    Experiment tracking with weights and biases, 2020

    Lukas Biewald. Experiment tracking with weights and biases, 2020. URL https://www.wandb.com/. Software available from wandb.com

  4. [4]

    Torchrl: A data-driven decision-making library for pytorch, 2023

    Albert Bou, Matteo Bettini, Sebastian Dittert, Vikash Kumar, Shagun Sodhani, Xiaomeng Yang, Gianni De Fabritiis, and Vincent Moens. Torchrl: A data-driven decision-making library for pytorch, 2023

  5. [5]

    Exploration by random network distillation

    Yuri Burda, Harrison Edwards, Amos Storkey, and Oleg Klimov. Exploration by random network distillation. In International Conference on Learning Representations (ICLR), pages 1--17, 2019

  6. [6]

    Cat: Constraints as terminations for legged locomotion reinforcement learning

    Elliot Chane-Sane, Pierre-Alexandre Leziart, Thomas Flayols, Olivier Stasse, Philippe Sou \`e res, and Nicolas Mansard. Cat: Constraints as terminations for legged locomotion reinforcement learning. In Proceedings of the IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pages 13303--13310. IEEE, 2024

  7. [7]

    Extreme parkour with legged robots

    Xuxin Cheng, Kexin Shi, Ananye Agarwal, and Deepak Pathak. Extreme parkour with legged robots. Conference on Robot Learning (CoRL), 2023

  8. [8]

    Dynamic object goal pushing with mobile manipulators through model-free constrained reinforcement learning

    Ioannis Dadiotis, Mayank Mittal, Nikos Tsagarakis, and Marco Hutter. Dynamic object goal pushing with mobile manipulators through model-free constrained reinforcement learning. Proceedings of the IEEE International Conference on Robotics and Automation (ICRA), 2025

Show all 43 references
  1. [9]

    Deep whole-body control: learning a unified policy for manipulation and locomotion

    Zipeng Fu, Xuxin Cheng, and Deepak Pathak. Deep whole-body control: learning a unified policy for manipulation and locomotion. In Conference on Robot Learning (CoRL), pages 138--149. PMLR, 2023

  2. [10]

    Dextreme: Transfer of agile in-hand manipulation from simulation to reality

    Ankur Handa, Arthur Allshire, Viktor Makoviychuk, Aleksei Petrenko, Ritvik Singh, Jingzhou Liu, Denys Makoviichuk, Karl Van Wyk, Alexander Zhurkevich, Balakumar Sundaralingam, et al. Dextreme: Transfer of agile in-hand manipulation from simulation to reality. In Proceedings of...

  3. [11]

    Attention-based map encoding for learning generalized legged locomotion

    Junzhe He, Chong Zhang, Fabian Jenelten, Ruben Grandia, Moritz B \"a cher, and Marco Hutter. Attention-based map encoding for learning generalized legged locomotion. Science Robotics, 10 0 (105): 0 eadv3604, 2025

  4. [12]

    Hover: Versatile neural whole-body controller for humanoid robots

    Tairan He, Wenli Xiao, Toru Lin, Zhengyi Luo, Zhenjia Xu, Zhenyu Jiang, Jan Kautz, Changliu Liu, Guanya Shi, Xiaolong Wang, et al. Hover: Versatile neural whole-body controller for humanoid robots. arXiv preprint arXiv:2410.21229, 2024

  5. [13]

    Anymal parkour: Learning agile navigation for quadrupedal robots

    David Hoeller, Nikita Rudin, Dhionis Sako, and Marco Hutter. Anymal parkour: Learning agile navigation for quadrupedal robots. Science Robotics, 9 0 (88): 0 eadi7566, 2024

  6. [14]

    The 37 implementation details of proximal policy optimization

    Shengyi Huang, Rousslan Fernand Julien Dossa, Antonin Raffin, Anssi Kanervisto, and Weixun Wang. The 37 implementation details of proximal policy optimization. In ICLR Blog Track, 2022 a . URL https://iclr-blog-track.github.io/2022/03/25/ppo-implementation-details/. https://ic...

  7. [15]

    Cleanrl: High-quality single-file implementations of deep reinforcement learning algorithms

    Shengyi Huang, Rousslan Fernand Julien Dossa, Chang Ye, Jeff Braga, Dipam Chakraborty, Kinal Mehta, and Jo \ A G o GM Ara \ A s jo. Cleanrl: High-quality single-file implementations of deep reinforcement learning algorithms. Journal of Machine Learning Research (JMLR), 23 0 (2...

  8. [16]

    Learning agile and dynamic motor skills for legged robots

    Jemin Hwangbo, Joonho Lee, Alexey Dosovitskiy, Dario Bellicoso, Vassilios Tsounis, Vladlen Koltun, and Marco Hutter. Learning agile and dynamic motor skills for legged robots. Science Robotics, 4 0 (26): 0 eaau5872, 2019

  9. [17]

    Learning robust autonomous navigation and locomotion for wheeled-legged robots

    Joonho Lee, Marko Bjelonic, Alexander Reske, Lorenz Wellhausen, Takahiro Miki, and Marco Hutter. Learning robust autonomous navigation and locomotion for wheeled-legged robots. Science Robotics, 9 0 (89): 0 eadi9641, 2024

  10. [18]

    Marladona-towards cooperative team play using multi-agent reinforcement learning

    Zichong Li, Filip Bjelonic, Victor Klemm, and Marco Hutter. Marladona-towards cooperative team play using multi-agent reinforcement learning. In Proceedings of the IEEE International Conference on Robotics and Automation (ICRA), 2025

  11. [19]

    Rllib: Abstractions for distributed reinforcement learning

    Eric Liang, Richard Liaw, Robert Nishihara, Philipp Moritz, Roy Fox, Ken Goldberg, Joseph Gonzalez, Michael Jordan, and Ion Stoica. Rllib: Abstractions for distributed reinforcement learning. In International Conference on Machine Learning (ICML), pages 3053--3062, 2018

  12. [20]

    rl-games: A high-performance framework for reinforcement learning

    Denys Makoviichuk and Viktor Makoviychuk. rl-games: A high-performance framework for reinforcement learning. https://github.com/Denys88/rl_games, May 2021

  13. [21]

    Isaac gym: High performance gpu based physics simulation for robot learning

    Viktor Makoviychuk, Lukasz Wawrzyniak, Yunrong Guo, Michelle Lu, Kier Storey, Miles Macklin, David Hoeller, Nikita Rudin, Arthur Allshire, Ankur Handa, and Gavriel State. Isaac gym: High performance gpu based physics simulation for robot learning. In Proceedings of the Neural ...

  14. [22]

    Margolis and Pulkit Agrawal

    Gabriel B. Margolis and Pulkit Agrawal. Walk these ways: Tuning robot control for generalization with multiplicity of behavior. In Conference on Robot Learning (CoRL), volume 205, pages 22--31. PMLR, 2023

  15. [23]

    Learning robust perceptive locomotion for quadrupedal robots in the wild

    Takahiro Miki, Joonho Lee, Jemin Hwangbo, Lorenz Wellhausen, Vladlen Koltun, and Marco Hutter. Learning robust perceptive locomotion for quadrupedal robots in the wild. Science Robotics, 7 0 (62), 2022

  16. [24]

    Orbit: A unified simulation framework for interactive robot learning environments

    Mayank Mittal, Calvin Yu, Qinxi Yu, Jingzhou Liu, Nikita Rudin, David Hoeller, Jia Lin Yuan, Ritvik Singh, Yunrong Guo, Hammad Mazhar, et al. Orbit: A unified simulation framework for interactive robot learning environments. IEEE Robotics and Automation Letters (RA-L), 8 0 (6)...

  17. [25]

    Symmetry considerations for learning task symmetric robot policies

    Mayank Mittal, Nikita Rudin, Victor Klemm, Arthur Allshire, and Marco Hutter. Symmetry considerations for learning task symmetric robot policies. In Proceedings of the IEEE International Conference on Robotics and Automation (ICRA), pages 7433--7439. IEEE, 2024

  18. [26]

    neptune.ai: experiment tracker, 2024

    neptune.ai . neptune.ai: experiment tracker, 2024. URL https://neptune.ai

  19. [27]

    Pytorch: An imperative style, high-performance deep learning library

    Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, et al. Pytorch: An imperative style, high-performance deep learning library. Advances in Neural Information Processing Systems (Neu...

  20. [28]

    Stable-baselines3: Reliable reinforcement learning implementations

    Antonin Raffin, Ashley Hill, Adam Gleave, Anssi Kanervisto, Maximilian Ernestus, and Noah Dormann. Stable-baselines3: Reliable reinforcement learning implementations. Journal of Machine Learning Research (JMLR), 22 0 (268): 0 1--8, 2021

  21. [29]

    A reduction of imitation learning and structured prediction to no-regret online learning

    St \'e phane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured prediction to no-regret online learning. In Proceedings of the fourteenth international conference on artificial intelligence and statistics, pages 627--635. JMLR Workshop an...

  22. [30]

    Learning to walk in minutes using massively parallel deep reinforcement learning

    Nikita Rudin, David Hoeller, Philipp Reist, and Marco Hutter. Learning to walk in minutes using massively parallel deep reinforcement learning. In Conference on Robot Learning (CoRL), pages 91--100, 2022

  23. [31]

    Parkour in the wild: Learning a general and extensible agile locomotion policy using multi-expert distillation and rl fine-tuning

    Nikita Rudin, Junzhe He, Joshua Aurand, and Marco Hutter. Parkour in the wild: Learning a general and extensible agile locomotion policy using multi-expert distillation and rl fine-tuning. International Journal of Robotics Research (IJRR), 2025

  24. [32]

    Proximal policy optimization algorithms

    John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv e-prints, pages arXiv--1707, 2017

  25. [33]

    Curiosity-driven learning of joint locomotion and manipulation tasks

    Clemens Schwarke, Victor Klemm, Matthijs Van der Boon, Marko Bjelonic, and Marco Hutter. Curiosity-driven learning of joint locomotion and manipulation tasks. In Conference on Robot Learning (CoRL), volume 229, pages 2594--2610, 2023

  26. [34]

    skrl: Modular and flexible library for reinforcement learning

    Antonio Serrano-Munoz, Dimitrios Chrysostomou, Simon B gh, and Nestor Arana-Arexolaleiba. skrl: Modular and flexible library for reinforcement learning. Journal of Machine Learning Research (JMLR), 24 0 (254): 0 1--9, 2023

  27. [35]

    Reinforcement learning algorithms: A brief survey

    Ashish Kumar Shakya, Gopinatha Pillai, and Sohom Chakrabarty. Reinforcement learning algorithms: A brief survey. Expert Systems with Applications, 231: 0 120495, 2023

  28. [36]

    Guided reinforcement learning for robust multi-contact loco-manipulation

    Jean-Pierre Sleiman, Mayank Mittal, and Marco Hutter. Guided reinforcement learning for robust multi-contact loco-manipulation. In Conference on Robot Learning (CoRL), 2024

  29. [37]

    Gymnasium: A standard interface for reinforcement learning environments

    Mark Towers, Ariel Kwiatkowski, Jordan Terry, John U Balis, Gianluca De Cola, Tristan Deleu, Manuel Goul \ a o, Andreas Kallinteris, Markus Krimmel, Arjun KG, et al. Gymnasium: A standard interface for reinforcement learning environments. arXiv preprint arXiv:2407.17032, 2024

  30. [38]

    Advanced skills through multiple adversarial motion priors in reinforcement learning

    Eric Vollenweider, Marko Bjelonic, Victor Klemm, Nikita Rudin, Joonho Lee, and Marco Hutter. Advanced skills through multiple adversarial motion priors in reinforcement learning. arXiv preprint arXiv:2203.14912, 2022

  31. [39]

    Improving long-range navigation with spatially-enhanced recurrent memory via end-to-end reinforcement learning

    Fan Yang, Per Frivik, David Hoeller, Chen Wang, Cesar Cadena, and Marco Hutter. Improving long-range navigation with spatially-enhanced recurrent memory via end-to-end reinforcement learning. arXiv preprint arXiv:2506.05997, 2025

  32. [40]

    Mujoco playground

    Kevin Zakka, Baruch Tabanpour, Qiayuan Liao, Mustafa Haiderbhai, Samuel Holt, Jing Yuan Luo, Arthur Allshire, Erik Frey, Koushil Sreenath, Lueder A Kahrs, et al. Mujoco playground. Robotics: Science and Systems (RSS), 2025

  33. [41]

    Learning agile locomotion on risky terrains

    Chong Zhang, Nikita Rudin, David Hoeller, and Marco Hutter. Learning agile locomotion on risky terrains. In 2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pages 11864--11871. IEEE, 2024 a

  34. [42]

    Wococo: Learning whole-body humanoid control with sequential contacts

    Chong Zhang, Wenli Xiao, Tairan He, and Guanya Shi. Wococo: Learning whole-body humanoid control with sequential contacts. arXiv preprint arXiv:2406.06005, 2024 b

  35. [43]

    Penalized proximal policy optimization for safe reinforcement learning

    Linrui Zhang, Li Shen, Long Yang, Shixiang Chen, Bo Yuan, Xueqian Wang, and Dacheng Tao. Penalized proximal policy optimization for safe reinforcement learning. arXiv preprint arXiv:2205.11814, 2022

Pith tools

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