StepData

minari.StepData

class minari.StepData[source]

Object containing data of a single environment step.

Attributes

StepData.observation: Any

The next observation returned by the environment after performing the action.

StepData.action: Any | None

The action performed by the agent on the environment.

StepData.termination: bool | None

The terminated value returned by the environment after performing the action.

StepData.truncation: bool | None

The truncated value returned by the environment after performing the action.

StepData.info: Dict[str, Any]

The info dictionary returned by the environment after performing the action.