Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/source/publications/omnireset/rl_training.rst
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,28 @@ Reproduce our training results from scratch.

----

Modifying RSL-RL
^^^^^^^^^^^^^^^^

If you want to modify the RSL-RL algorithm (e.g. custom loss functions, network architectures, or training loops), you can install a local editable copy. Clone it as a sibling of UWLab:

.. code::

parent_dir/
├── UWLab/
└── rsl_rl/

.. code:: bash

git clone https://github.com/UW-Lab/rsl_rl.git
cd rsl_rl
pip uninstall rsl-rl-lib
pip install -e .

Any changes you make to the cloned ``rsl_rl/`` directory will take effect immediately without reinstalling.

----

Next Steps
^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion source/uwlab_rl/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# Extra dependencies for RL agents
EXTRAS_REQUIRE = {
"rsl-rl": [
"rsl-rl-lib @ git+https://github.com/zoctipus/rsl_rl.git@master",
"rsl-rl-lib @ git+https://github.com/UW-Lab/rsl_rl.git@main",
],
}

Expand Down
Loading