Git Product home page Git Product logo

Comments (2)

boris-il-forte avatar boris-il-forte commented on June 19, 2024 1

dear @angel-ayala ,
We do this transfer of spaces because we think the Tuple and Dict environments are not well-suited for reinforcement learning state space. Thus we decided not to support these state spaces for the two following reasons:

  1. The tuple is nothing else than a finite MDP environment with coordinates. If the MDP is too big, you should not use tuples, but the Box environment (e.g. if you want a generalization in coordinates). NB: if you use tuples, you cannot solve finite MDPs using mushroom finite agents, as they use a single index to discriminate finite states. If you want to use a continuous algorithm, you can just put the tuples inside a vector using box state (the fact that the coordinates are discrete is completely irrelevant)

  2. The dict state space is irrelevant, as you can stack together the elements of the environment and create a vector.
    If you want to use dictionary output, you can simply return data using the info dictionary, which is already passed to the fit method of the environment.

Side note about gymnasium: we are still not sure when (and if) we will support it. The API of gym was breaking too much to be of any use (indeed we stopped the support at gym 0.24.1), and until gymnasium is stable and not breaking every release, we are not going to support it. However, making an interface based on the gym one is pretty trivial.

It would be instead interesting to support more complex state space, such as graphs. This requires however support for graph neural networks and a bit of software engineering, and is not planned in the short future.

from mushroom-rl.

angel-ayala avatar angel-ayala commented on June 19, 2024

I was looking the implementation of the Gym environment and there is a _convert_gym_space() method which transfer the Gym spaces to the Mushroom spaces code and comparing with the Discrete and Box's from Gym library.

So, I was wondering the need to do this transfer spaces because the only enhancement achieve is to store the object as Serializable. Can this be done using a wrapper adding the self._add_save_attr() method use for the respective attributes presentes in the Gym spaces?

from mushroom-rl.

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.