Skip to content

Commit 9706c44

Browse files
ashwinvkNVkellyguo11
authored andcommitted
Adds all params for Reach policy ROS inference (isaac-sim#4209)
# Description Add missing params for reach policy inference ## Type of change - Bug fix (non-breaking change which fixes an issue) ## 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] My changes generate no new warnings - [x] 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 --------- Signed-off-by: Kelly Guo <kellyg@nvidia.com> Co-authored-by: Kelly Guo <kellyg@nvidia.com>
1 parent 686006c commit 9706c44

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

source/isaaclab_tasks/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
# Note: Semantic Versioning is used: https://semver.org/
4-
version = "0.11.9"
4+
version = "0.11.10"
55

66
# Description
77
title = "Isaac Lab Environments"

source/isaaclab_tasks/docs/CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changelog
22
---------
33

4+
0.11.10 (2025-12-13)
5+
~~~~~~~~~~~~~~~~~~~~
6+
7+
Added
8+
^^^^^
9+
10+
* Added obs_groups to the RSL-RL PPO agent configuration for the ``Isaac-Reach-UR10e-v0`` environment.
11+
* Changed self.state_space to 19 in the ``Isaac-Reach-UR10e-ROS-Inference-v0`` environment.
12+
13+
414
0.11.9 (2025-11-10)
515
~~~~~~~~~~~~~~~~~~~
616

source/isaaclab_tasks/isaaclab_tasks/manager_based/manipulation/deploy/reach/config/ur_10e/agents/rsl_rl_ppo_cfg.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class URReachPPORunnerCfg(RslRlOnPolicyRunnerCfg):
1515
save_interval = 50
1616
experiment_name = "reach_ur10e"
1717
empirical_normalization = True
18+
obs_groups = {"policy": ["policy"], "critic": ["policy"]}
1819
policy = RslRlPpoActorCriticCfg(
1920
init_noise_std=1.0,
2021
actor_hidden_dims=[256, 128, 64],

source/isaaclab_tasks/isaaclab_tasks/manager_based/manipulation/deploy/reach/config/ur_10e/ros_inference_env_cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __post_init__(self):
3030
]
3131
self.policy_action_space = "joint"
3232
self.action_space = 6
33-
self.state_space = 0
33+
self.state_space = 19
3434
self.observation_space = 19
3535

3636
# Set joint_action_scale from the existing arm_action.scale

0 commit comments

Comments
 (0)