xpag.wrappers.reset_done.ResetDoneWrapper#
- class ResetDoneWrapper(env)#
Bases:
WrapperWraps an environment to allow a modular transformation of the
step()andreset()methods.- Parameters:
env – The environment to wrap
Methods
Returns the class name of the wrapper.
Closes the wrapper and
env.Gets an attribute from the wrapper and lower environments if name doesn't exist in this object.
Uses the
render()of theenvthat can be overwritten to change the returned data.Uses the
reset()of theenvthat can be overwritten to change the returned data.reset_doneUses the
step()of theenvthat can be overwritten to change the returned data.Generates a WrapperSpec for the wrappers.
Attributes
Return the
Envaction_spaceunless overwritten then the wrapperaction_spaceis used.Returns the
Envmetadata.Returns the
Envnp_randomattribute.Return the
Envobservation_spaceunless overwritten then the wrapperobservation_spaceis used.Returns the
Envrender_mode.Return the
Envreward_rangeunless overwritten then the wrapperreward_rangeis used.Returns the
Envspecattribute with the WrapperSpec if the wrapper inherits from EzPickle.Returns the base environment of the wrapper.
- property action_space: Space[ActType] | Space[WrapperActType]#
Return the
Envaction_spaceunless overwritten then the wrapperaction_spaceis used.
- classmethod class_name()#
Returns the class name of the wrapper.
- Return type:
str
- close()#
Closes the wrapper and
env.
- get_wrapper_attr(name)#
Gets an attribute from the wrapper and lower environments if name doesn’t exist in this object.
- Parameters:
name (
str) – The variable name to get- Return type:
Any- Returns:
The variable with name in wrapper or lower environments
- property observation_space: Space[ObsType] | Space[WrapperObsType]#
Return the
Envobservation_spaceunless overwritten then the wrapperobservation_spaceis used.
- render()#
Uses the
render()of theenvthat can be overwritten to change the returned data.- Return type:
Union[TypeVar(RenderFrame),list[TypeVar(RenderFrame)],None]
- property render_mode: str | None#
Returns the
Envrender_mode.
- property reward_range: tuple[SupportsFloat, SupportsFloat]#
Return the
Envreward_rangeunless overwritten then the wrapperreward_rangeis used.
- property spec: EnvSpec | None#
Returns the
Envspecattribute with the WrapperSpec if the wrapper inherits from EzPickle.
- property unwrapped: Env[ObsType, ActType]#
Returns the base environment of the wrapper.
This will be the bare
gymnasium.Envenvironment, underneath all layers of wrappers.
- classmethod wrapper_spec(**kwargs)#
Generates a WrapperSpec for the wrappers.
- Return type:
WrapperSpec