You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, auto_reset feature is provided as experimental but as it's actually a MUST to use auto_reset in vectorized env, we'll implement it to public API.
auto_reset="replace" : To overwrite the final state with the initial state when an episode ends.
auto_reset="manual" : To allow the agent to continue acting on the terminal state and transition to the initial state.
auto_reset=None : To represent no automatic reset.
The text was updated successfully, but these errors were encountered:
Currently,
auto_reset
feature is provided as experimental but as it's actually a MUST to useauto_reset
in vectorized env, we'll implement it to public API.auto_reset="replace"
: To overwrite the final state with the initial state when an episode ends.auto_reset="manual"
: To allow the agent to continue acting on the terminal state and transition to the initial state.auto_reset=None
: To represent no automatic reset.The text was updated successfully, but these errors were encountered: