GithubHelp home page GithubHelp logo

Comments (3)

aaronwalsman avatar aaronwalsman commented on July 19, 2024 4

It would be nice to support a consistent convention for this. Not all environments will be resettable, but for those that are, something like get_state and set_state, where get_state returns a single value and set_state accepts a single argument would be super nice. There's a whole class of RL algorithms that require state-resettable environments (think MCTS or really anything that looks like tree-search) and it would be nice to support them consistently where possible.

from gymnasium.

pseudo-rnd-thoughts avatar pseudo-rnd-thoughts commented on July 19, 2024

Gymnasium environment has no single state variable (some environments do but not all). Therefore, the easier way is to make a pickled version of the environment at each time.
For internal gymnasium environments, we know that it is possible to pickle all environment but this might not be true for third-party environments

You might be interested in the new functional API #25. For a fully implemented version, see the Gymnax project

from gymnasium.

Altriaex avatar Altriaex commented on July 19, 2024

For Mujoco environments there is a function called set_state, which should, in principle, set the status of the simulator.

def set_state(self, qpos, qvel):

And in particular, I think if you can keep state.time, qpos, qvel, state.act, and state.udd_state, then you should be able to set the simulator to a desired state.

state = mujoco_py.MjSimState(state.time, qpos, qvel, state.act, state.udd_state)

And if you are using any wrappers, such as TimeLimit, then you will need to keep track of status of the wrappers.

from gymnasium.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.