Skip to content

Commit 017a1ee

Browse files
ashwinvkNVooctipus
andauthored
Exposes state_dependent_std parameter in rl_cfg for rsl_rl. (#4091)
# Description Adds a new state_dependent_std param to the rsl_rl_config for IsaacLab. --------- Signed-off-by: ooctipus <[email protected]> Co-authored-by: ooctipus <[email protected]>
1 parent 64ecea2 commit 017a1ee

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

source/isaaclab_rl/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.4.4"
4+
version = "0.4.5"
55

66
# Description
77
title = "Isaac Lab RL"

source/isaaclab_rl/docs/CHANGELOG.rst

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

4+
5+
6+
0.4.5 (2025-12-01)
7+
~~~~~~~~~~~~~~~~~~
8+
9+
Added
10+
^^^^^
11+
12+
* Added state_dependent_std rsl_rl param to RSL-RL wrapper.
13+
14+
415
0.4.4 (2025-10-15)
516
~~~~~~~~~~~~~~~~~~
617

source/isaaclab_rl/isaaclab_rl/rsl_rl/rl_cfg.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ class RslRlPpoActorCriticCfg:
3131
noise_std_type: Literal["scalar", "log"] = "scalar"
3232
"""The type of noise standard deviation for the policy. Default is scalar."""
3333

34+
state_dependent_std: bool = False
35+
"""Whether to use state-dependent standard deviation for the policy. Default is False."""
36+
3437
actor_obs_normalization: bool = MISSING
3538
"""Whether to normalize the observation for the actor network."""
3639

0 commit comments

Comments
 (0)