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
2 changes: 1 addition & 1 deletion source/isaaclab_rl/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

# Note: Semantic Versioning is used: https://semver.org/
version = "0.4.4"
version = "0.4.5"

# Description
title = "Isaac Lab RL"
Expand Down
11 changes: 11 additions & 0 deletions source/isaaclab_rl/docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Changelog
---------



0.4.5 (2025-12-01)
~~~~~~~~~~~~~~~~~~

Added
^^^^^

* Added state_dependent_std rsl_rl param to RSL-RL wrapper.


0.4.4 (2025-10-15)
~~~~~~~~~~~~~~~~~~

Expand Down
3 changes: 3 additions & 0 deletions source/isaaclab_rl/isaaclab_rl/rsl_rl/rl_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ class RslRlPpoActorCriticCfg:
noise_std_type: Literal["scalar", "log"] = "scalar"
"""The type of noise standard deviation for the policy. Default is scalar."""

state_dependent_std: bool = False
"""Whether to use state-dependent standard deviation for the policy. Default is False."""

actor_obs_normalization: bool = MISSING
"""Whether to normalize the observation for the actor network."""

Expand Down