Skip to content
Open
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 docs/source/setup/walkthrough/technical_env_design.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ and ``_get_rewards`` with the following.
return observations

def _get_rewards(self) -> torch.Tensor:
total_reward = torch.linalg.norm(self.velocity, dim=-1, keepdim=True)
total_reward = torch.linalg.norm(self.velocity, dim=-1)
return total_reward

The robot exists as an Articulation object within the Isaac Lab API. That object carries a data class, the ``ArticulationData``, which contains all the data for **specific** robots on the stage.
Expand Down