Unverified Commit 32ea57ee authored by lgulich's avatar lgulich Committed by GitHub

Fixes minor typos in docs (#1119)

# Description

Fix small typos in the documentation and comments

## Type of change

- This change requires a documentation update

## Checklist

- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./isaaclab.sh --format`
- [x] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [x] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there
parent 80cff164
...@@ -49,6 +49,7 @@ Guidelines for modifications: ...@@ -49,6 +49,7 @@ Guidelines for modifications:
* Johnson Sun * Johnson Sun
* Kaixi Bao * Kaixi Bao
* Kourosh Darvish * Kourosh Darvish
* Lionel Gulich
* Lorenz Wellhausen * Lorenz Wellhausen
* Masoud Moghani * Masoud Moghani
* Michael Gussert * Michael Gussert
......
...@@ -60,7 +60,7 @@ format. ...@@ -60,7 +60,7 @@ format.
# install python module (for robomimic) # install python module (for robomimic)
./isaaclab.sh -i robomimic ./isaaclab.sh -i robomimic
# split data # split data
./isaaclab.sh -p source/standalone//workflows/robomimic/tools/split_train_val.py logs/robomimic/Isaac-Lift-Cube-Franka-IK-Rel-v0/hdf_dataset.hdf5 --ratio 0.2 ./isaaclab.sh -p source/standalone/workflows/robomimic/tools/split_train_val.py logs/robomimic/Isaac-Lift-Cube-Franka-IK-Rel-v0/hdf_dataset.hdf5 --ratio 0.2
3. Train a BC agent for ``Isaac-Lift-Cube-Franka-IK-Rel-v0`` with 3. Train a BC agent for ``Isaac-Lift-Cube-Franka-IK-Rel-v0`` with
`Robomimic <https://robomimic.github.io/>`__: `Robomimic <https://robomimic.github.io/>`__:
......
...@@ -49,7 +49,7 @@ from omni.isaac.lab_assets.unitree import UNITREE_A1_CFG, UNITREE_GO1_CFG, UNITR ...@@ -49,7 +49,7 @@ from omni.isaac.lab_assets.unitree import UNITREE_A1_CFG, UNITREE_GO1_CFG, UNITR
def define_origins(num_origins: int, spacing: float) -> list[list[float]]: def define_origins(num_origins: int, spacing: float) -> list[list[float]]:
"""Defines the origins of the the scene.""" """Defines the origins of the scene."""
# create tensor based on number of environments # create tensor based on number of environments
env_origins = torch.zeros(num_origins, 3) env_origins = torch.zeros(num_origins, 3)
# create a grid of origins # create a grid of origins
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment