Giter Site home page Giter Site logo

knut0815 / neurips2020-procgen-starter-kit Goto Github PK

View Code? Open in Web Editor NEW

This project forked from aicrowd/neurips2020-procgen-starter-kit

0.0 0.0 0.0 121 KB

Starter Kit for NeurIPS 2020 - Procgen Competition on AIcrowd

License: Apache License 2.0

Python 87.38% Dockerfile 2.08% Shell 10.54%

neurips2020-procgen-starter-kit's Introduction

NeurIPS 2020 - Procgen Starter Kit

AIcrowd-Logo

This is the starter kit for the NeurIPS 2020 - Procgen competition hosted on AIcrowd

๐Ÿ•ต๏ธ About ProcGen Benchmark

16 simple-to-use procedurally-generated gym environments which provide a direct measure of how quickly a reinforcement learning agent learns generalizable skills. The environments run at high speed (thousands of steps per second) on a single core.

These environments are associated with the paper Leveraging Procedural Generation to Benchmark Reinforcement Learning (citation). Compared to Gym Retro, these environments are:

  • Faster: Gym Retro environments are already fast, but Procgen environments can run >4x faster.
  • Non-deterministic: Gym Retro environments are always the same, so you can memorize a sequence of actions that will get the highest reward. Procgen environments are randomized so this is not possible.
  • Customizable: If you install from source, you can perform experiments where you change the environments, or build your own environments. The environment-specific code for each environment is often less than 300 lines. This is almost impossible with Gym Retro.

๐Ÿ”ง Installation

Quick start

git clone https://github.com/AIcrowd/neurips2020-procgen-starter-kit.git
./utils/setup.sh

Manually setup the environment

  • Clone this repository
git clone https://github.com/AIcrowd/neurips2020-procgen-starter-kit.git
  • Download and install Miniconda (if you don't have it already)

  • Create a new environment with python 3.7

conda create -n procgen -y
conda activate procgen
conda install python=3.7 -y
  • Install dependencies
conda activate procgen
pip install ray[rllib]==0.8.6
pip install procgen
  • Install the DL framework of you choice (tensorflow, pytorch, etc.,)

๐Ÿ’ช Getting Started

Train your agent

./run.sh --train

Rollout the agent

./run.sh --rollout

Please refer to the instructions here for advanced users.

How do I add a custom Model ?

To add a custom model, create a file inside models/ directory and name it models/my_vision_network.py. Please refer here for a working implementation of how to add a custom model. You can then set the custom_model field in the experiment yaml to my_vision_network to cause that model to be used.

How do I add a custom Algorithm/Trainable/Agent ?

Please refer to the instructions here

What configs parameters do I have available ?

This is a very thin wrapper over RLLib. Hence, you have all the RLLib config options available in the experiment configuration (YAML) file to play with. Please refer to this example for an explanation on the structure and available options in the experiment config file.

๐Ÿš€ Submission

Repository Structure

.
โ”œโ”€โ”€ aicrowd_helpers                     # Helper files (DO NOT EDIT)
โ”œโ”€โ”€ algorithms                          # Directory to implement your custom algorithm/trainable/agent
โ”‚ย ย  โ”œโ”€โ”€ custom_random_agent
โ”‚ย ย  โ”œโ”€โ”€ random_policy
โ”‚ย ย  โ”œโ”€โ”€ __init__.py
โ”‚ย ย  โ””โ”€โ”€ registry.py                     # Register your custom agents here
โ”œโ”€โ”€ envs
โ”‚ย ย  โ”œโ”€โ”€ __init__.py
โ”‚ย ย  โ”œโ”€โ”€ framestack.py                   # Example for using custom env wrappers
โ”‚ย ย  โ”œโ”€โ”€ procgen_env_wrapper.py          # Base env used during evaluations (DO NOT EDIT)
โ”œโ”€โ”€ experiments                         # Directory contaning the config for different experiments
โ”‚ย ย  โ”œโ”€โ”€ impala-baseline.yaml            # Baseline using impala
โ”‚ย ย  โ”œโ”€โ”€ procgen-starter-example.yaml    # Sample experiment config file
โ”‚ย ย  โ””โ”€โ”€ random-policy.yaml              # Sample random policy config file
โ”œโ”€โ”€ models                              # Directory to implement custom models
โ”‚ย ย  โ”œโ”€โ”€ impala_cnn_tf.py
โ”‚ย ย  โ”œโ”€โ”€ impala_cnn_torch.py
โ”‚ย ย  โ””โ”€โ”€ my_vision_network.py
โ”œโ”€โ”€ preprocessors                       # Directory to implement your custom observation wrappers
โ”‚ย ย  โ”œโ”€โ”€ __init__.py                     # Register your preprocessors here
โ”‚ย ย  โ””โ”€โ”€ custom_preprocessor.py
โ”œโ”€โ”€ utils                               # Helper scripts for the competition
โ”‚ย ย  โ”œโ”€โ”€ setup.sh                        # Setup local procgen environment using `conda`
โ”‚ย ย  โ”œโ”€โ”€ submit.sh                       # Submit your solution
โ”‚ย ย  โ”œโ”€โ”€ teardown.sh                     # Remove the existing local procgen environment using `conda`
โ”‚ย ย  โ”œโ”€โ”€ validate_config.py              # Validate the experiment YAML file
โ”‚ย ย  โ””โ”€โ”€ loader.py
โ”œโ”€โ”€ Dockerfile                          # Docker config for your submission environment
โ”œโ”€โ”€ aicrowd.json                        # Submission config file (required)
โ”œโ”€โ”€ callbacks.py                        # Custom Callbacks & Custom Metrics
โ”œโ”€โ”€ requirements.txt                    # These python packages will be installed using `pip`
โ”œโ”€โ”€ rollout.py                          # Rollout script (DO NOT EDIT)
โ”œโ”€โ”€ run.sh                              # Entrypoint to your submission
โ””โ”€โ”€ train.py                            # Script to trigger the training using `rllib` (DO NOT EDIT)

aicrowd.json

Your repository should have an aicrowd.json file with following fields:

{
    "challenge_id" : "evaluations-api-neurips-2020-procgen",
    "grader_id": "evaluations-api-neurips-2020-procgen",
    "authors" : ["aicrowd-bot"],
    "description" : "NeurIPS 2020: Procgen Competition Agent",
    "docker_build" : false
}

This file is used to identify your submission as a part of the NeurIPS 2020 Procgen Competition Challenge. You must use the challenge_id, and grader_id as specified above.

Submission environment configuration

By default we will run your code in an Ubuntu 18.04 environment with tensorflow==1.14.0, ray[rllib]==0.8.5 and procgen installed.

If you want to run your submissions in a customized environment, first head to aicrowd.json and set docker_build to true. This flag tells that you need a custom environment.

You can specify your software environment by using Dockerfile``requirements.txt. Available options are

  • requirements.txt: We will use pip install -r requiremens.txt to install your packages.
  • Dockerfile: We will build the docker image using the specified Dockerfile. If you have a Dockerfile in your repository, any other automatic installation will not be triggered. This means that you will have to include installation steps for packages in requirements.txt yourself.

A sample Dockerfile and a corresponding requirements.txt are provided in this repository for you reference.

Code entrypoint

The evaluator will read the value of EXPERIMENT from run.sh in the repository. During the training phase, we will use the file provided by EXPERIMENT variable to launch the training. During the rollouts phase, we will use the most recent checkpoint and start rollouts with that.

Submitting

Initial setup

  1. Setup an AIcrowd GitLab account if you don't have one by going to https://gitlab.aicrowd.com/
  2. Add your SSH key
  3. If you accept the challenge rules, click the Participate button on the AIcrowd contest page
# Optional: Start working with starter kit as starting point.
git clone [email protected]:AIcrowd/neurips2020-procgen-starter-kit.git
cd neurips2020-procgen-starter-kit

# Add AICrowd git remote endpoint
git remote add aicrowd [email protected]:<your-aicrowd-username>/neurips-2020-procgen-starter-kit.git
git push aicrowd master

Submitting using the helper script

./utils/submit.sh "<your submission message>"

For example,

./utils/submit.sh "impala-ppo-v0.1"

Manually submitting the code

Create a submission by pushing a tag to your repository with a prefix submission-. An example is shown below (you can keep repository name as you desire or have multiple repositories):

# Create a tag for your submission and push
git tag -am "submission-v0.1" submission-v0.1
git push aicrowd master
git push aicrowd submission-v0.1

# Note : If the contents of your repository (latest commit hash) does not change, 
# then pushing a new tag will not trigger a new evaluation.
  1. You should now be able to see the details of your submission in the repository's issues page. https://gitlab.aicrowd.com/<your-aicrowd-username>/neurips-2020-procgen-starter-kit/issues

and something along the lines of :

Happy Submitting!! ๐Ÿš€

Author(s)

neurips2020-procgen-starter-kit's People

Contributors

christopherhesse avatar gokulbnr avatar jyotishp avatar laxatives avatar paksha avatar skbly7 avatar spmohanty avatar

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.