gxm.Step#

class Step(next_obs, action, info)#

Bases: object

Output of a single model step: a pure dynamics transition.

Contains the next observation, the action taken, and any auxiliary info, but no episodic metadata (reward, termination, truncation).

__init__(next_obs, action, info)#

Methods

__init__(next_obs, action, info)

Attributes

next_obs

The observation at the next state.

action

The action taken at this step.

info

Additional information about the step.

action: Any#

The action taken at this step.

info: dict[str, Any]#

Additional information about the step.

next_obs: Any#

The observation at the next state.