Updates minor RSL-RL configclass docstring#4909
Merged
kellyguo11 merged 2 commits intoMar 10, 2026
Merged
Conversation
Contributor
Greptile SummaryThis PR makes minor docstring consistency updates across four RSL-RL configuration files, standardizing the phrasing from Key changes:
Confidence Score: 5/5
Important Files Changed
Class Diagram%%{init: {'theme': 'neutral'}}%%
classDiagram
class RslRlBaseRunnerCfg {
+seed: int = 42
+device: str = "cuda:0"
+run_name: str = ""
+logger: str = "tensorboard"
+resume: bool = False
}
class RslRlOnPolicyRunnerCfg {
+class_name: str = "OnPolicyRunner"
}
class RslRlDistillationRunnerCfg {
+class_name: str = "DistillationRunner"
}
class RslRlMLPModelCfg {
+class_name: str = "MLPModel"
+obs_normalization: bool = False
+noise_std_type: str = "scalar"
}
class RslRlRNNModelCfg {
+class_name: str = "RNNModel"
}
class RslRlCNNModelCfg {
+class_name: str = "CNNModel"
}
class RslRlPpoAlgorithmCfg {
+class_name: str = "PPO"
+optimizer: str = "adam"
+rnd_cfg: RslRlRndCfg = None
+symmetry_cfg: RslRlSymmetryCfg = None
}
class RslRlRndCfg {
+weight: float = 0.0
+weight_schedule: WeightScheduleCfg = None
}
class RslRlSymmetryCfg {
+use_data_augmentation: bool = False
+use_mirror_loss: bool = False
+mirror_loss_coeff: float = 0.0
}
RslRlBaseRunnerCfg <|-- RslRlOnPolicyRunnerCfg
RslRlBaseRunnerCfg <|-- RslRlDistillationRunnerCfg
RslRlMLPModelCfg <|-- RslRlRNNModelCfg
RslRlMLPModelCfg <|-- RslRlCNNModelCfg
RslRlPpoAlgorithmCfg --> RslRlRndCfg
RslRlPpoAlgorithmCfg --> RslRlSymmetryCfg
Last reviewed commit: 341ce3a |
kellyguo11
approved these changes
Mar 10, 2026
7 tasks
zuxinrui
pushed a commit
to zuxinrui/IsaacLab
that referenced
this pull request
Mar 11, 2026
Just a few docstring changes for consistency. Low priority and low risk. ## Type of change - Documentation update ## Checklist - [x] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [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
kellyguo11
added a commit
that referenced
this pull request
Mar 12, 2026
) # Description * [Adds Isaac-Stack-Cube-Franka-IK-Rel-v0 task variants with varying stack orders](#4875) * [Updates minor RSL-RL configclass docstring](#4909) ## Type of change <!-- As you go through the list, delete the ones that are not applicable. --> - Bug fix (non-breaking change which fixes an issue) - New feature (non-breaking change which adds functionality) - Breaking change (existing functionality will not work without user modification) - Documentation update ## Checklist - [x] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [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 - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already exists there <!-- As you go through the checklist above, you can mark something as done by putting an x character in it For example, - [x] I have done this task - [ ] I have not done this task --> --------- Signed-off-by: Kelly Guo <kellyg@nvidia.com> Signed-off-by: Kelly Guo <kellyguo123@hotmail.com> Co-authored-by: nv-caelan <cgarrett@nvidia.com> Co-authored-by: Clemens Schwarke <96480707+ClemensSchwarke@users.noreply.github.com>
nitesh-subedi
pushed a commit
to nitesh-subedi/IsaacLab
that referenced
this pull request
Mar 24, 2026
Just a few docstring changes for consistency. Low priority and low risk. ## Type of change - Documentation update ## Checklist - [x] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [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
daniela-hase
pushed a commit
to daniela-hase/IsaacLab
that referenced
this pull request
Mar 30, 2026
…aac-sim#4935) # Description * [Adds Isaac-Stack-Cube-Franka-IK-Rel-v0 task variants with varying stack orders](isaac-sim#4875) * [Updates minor RSL-RL configclass docstring](isaac-sim#4909) ## Type of change <!-- As you go through the list, delete the ones that are not applicable. --> - Bug fix (non-breaking change which fixes an issue) - New feature (non-breaking change which adds functionality) - Breaking change (existing functionality will not work without user modification) - Documentation update ## Checklist - [x] I have read and understood the [contribution guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html) - [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 - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already exists there <!-- As you go through the checklist above, you can mark something as done by putting an x character in it For example, - [x] I have done this task - [ ] I have not done this task --> --------- Signed-off-by: Kelly Guo <kellyg@nvidia.com> Signed-off-by: Kelly Guo <kellyguo123@hotmail.com> Co-authored-by: nv-caelan <cgarrett@nvidia.com> Co-authored-by: Clemens Schwarke <96480707+ClemensSchwarke@users.noreply.github.com>
kellyguo11
added a commit
that referenced
this pull request
May 28, 2026
# Description Merge changes from main branch: - #4875 - Adds Isaac-Stack-Cube-Franka-IK-Rel-v0 task variants - #4909 - Updates minor RSL-RL configclass docstring - #4934 - Updates Newton docs on main for 3.0 beta changes - #5182 - Fix flatdict version pin to allow 4.1.0+ - #5195 - Add NCCL troubleshooting notes - #5406 - Updates doc building job on main to match develop - #5311 - Update skrl integration for version 2.0.0 - #5482 - Adds nightly-changelog.yml on main - #5527 - Use isaaclab-bot GitHub App token for nightly changelog push - #5537 - Address deprecation warnings in nightly changelog workflow - #5746 - Fix .dockerignore for _isaac_sim symlink - #5745 - Parameterize nightly compile over configurable branches - #5546 - Fix swapped preserve_order docstrings - #5817 - Update skrl agent configurations in the Isaac Lab template
kellyguo11
added a commit
to kellyguo11/IsaacLab-public
that referenced
this pull request
May 28, 2026
# Description Merge changes from main branch: - isaac-sim#4875 - Adds Isaac-Stack-Cube-Franka-IK-Rel-v0 task variants - isaac-sim#4909 - Updates minor RSL-RL configclass docstring - isaac-sim#4934 - Updates Newton docs on main for 3.0 beta changes - isaac-sim#5182 - Fix flatdict version pin to allow 4.1.0+ - isaac-sim#5195 - Add NCCL troubleshooting notes - isaac-sim#5406 - Updates doc building job on main to match develop - isaac-sim#5311 - Update skrl integration for version 2.0.0 - isaac-sim#5482 - Adds nightly-changelog.yml on main - isaac-sim#5527 - Use isaaclab-bot GitHub App token for nightly changelog push - isaac-sim#5537 - Address deprecation warnings in nightly changelog workflow - isaac-sim#5746 - Fix .dockerignore for _isaac_sim symlink - isaac-sim#5745 - Parameterize nightly compile over configurable branches - isaac-sim#5546 - Fix swapped preserve_order docstrings - isaac-sim#5817 - Update skrl agent configurations in the Isaac Lab template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Just a few docstring changes for consistency. Low priority and low risk.
Type of change
Checklist
pre-commitchecks with./isaaclab.sh --format