Giter Club home page Giter Club logo

Comments (5)

araffin avatar araffin commented on September 17, 2024

I think you will need to define a policy that inherits from FeedFowardPolicy (or even ActorCriticPolicy), not Mlp or Cnn, because it will be a mix.

from rl-baselines-zoo.

araffin avatar araffin commented on September 17, 2024

Looking more closely at the gym miniworld envs, you don't need a custom policy in fact. You directly use a provided wrapper:
https://github.com/maximecb/gym-minigrid/blob/999599a412db112bc7efa9a0f72f8c315074f8bb/gym_minigrid/wrappers.py#L144

from rl-baselines-zoo.

tatsubori avatar tatsubori commented on September 17, 2024

In order to implement something similar to what is available as:
https://github.com/lcswillems/rl-starter-files
we need a custom policy anyway.

For examples with MiniGrid, given a Dict of image, mission text, and others -> we can either extract only image (ImgObsWrapper obs['image']), or flatten everything into a 1D vector (FlatObsWrapper, a MiniGrid-specific version of gym.wrappers.FlattenDictWrapper). Pretty much depending on gym and policies.

I locally made it able to run with ImgObsWrapper - CustomCnnPolicy:

class CustomGridCnnPolicy(BasePolicy): # as common.FeedForwardPolicy
    """
    Assuming gym_minigrid.wrappers.ImgObsWrapper
    """
    
    def __init__(self, *args, **kwargs):
        print("CustomGridCnnPolicy(): {} {}".format(args, kwargs))
        super(CustomGridCnnPolicy, self).__init__(*args, **kwargs,
                    cnn_extractor=rl_starter_cnn)

which doesn't converge faster than MlpPolicy. ;->

I am trying Cnn-Lstm according to one of the rl-starter-files models, but still ignoring mission text.
Then we can try FlatObsWrapper - another policy recovering image and text from a given vector.

from rl-baselines-zoo.

araffin avatar araffin commented on September 17, 2024

now in the roadmap of V3: DLR-RM/stable-baselines3#1

from rl-baselines-zoo.

araffin avatar araffin commented on September 17, 2024

closing this in favor of DLR-RM/stable-baselines3#243

from rl-baselines-zoo.

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.