@@ -4,7 +4,7 @@ EXport and dePLOY Reinforcement Learning policies.
44
55The core idea lies in a "self-contained" export approach:
66Rather than exporting only the neural network policy, this tool captures the entire environment
7- logic— including observation generation and action processing— into a single ONNX file.
7+ logic, including observation generation and action processing, into a single ONNX file.
88By tracing Torch operations from the simulation environment, the exporter embeds the computational
99layers required to transform raw robot state interfaces into policy inputs and policy outputs into
1010executable commands.
@@ -13,6 +13,8 @@ By encapsulating the environment's computation graph within the model file itsel
1313this library minimizes operational effort and maximizes confidence that a policy will behave
1414identically in simulation and on physical hardware.
1515
16+ Authors: Dario Bellicoso, Annika Wollschläger
17+
1618## Features
1719
1820- ** Environment Exporting** : Export RL environments and policies from
@@ -25,7 +27,7 @@ identically in simulation and on physical hardware.
2527## Project Structure
2628
2729- ` control/ ` : C++ controller library with ONNX Runtime integration
28- - ` exporter /` : Python exporter package for policy and environment export
30+ - ` exploy /` : Python exporter package for policy and environment export
2931- ` examples/ ` : Usage examples for supported frameworks
3032- ` docs/ ` : Documentation source files
3133
@@ -83,6 +85,9 @@ pixi run export-isaaclab
8385import exploy.exporter.core as exporter
8486from exploy.exporter.frameworks.isaaclab.env import IsaacLabExportableEnvironment
8587
88+ # Create an environment.
89+ env = . . .
90+
8691# Create an exportable environment from a ManagerBasedRLEnv
8792exportable_env = IsaacLabExportableEnvironment(env)
8893
@@ -269,3 +274,18 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE)
269274file for details.
270275
271276Copyright (c) 2026 Robotics and AI Institute LLC dba RAI Institute
277+
278+ ## Citation
279+
280+ If you use this work in your research or project, please consider citing it using the 'Cite this repository'
281+ button in the sidebar, or using:
282+
283+ ``` bibtex
284+ @misc{exploy2026,
285+ author = {Dario Bellicoso, Annika Wollschläger},
286+ title = {Exploy: EXport and dePLOY Reinforcement Learning policies},
287+ month = {March},
288+ year = {2026},
289+ url = {https://github.com/bdaiinstitute/exploy}
290+ }
291+ ```
0 commit comments