Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openai/coinrun
Code for the paper "Quantifying Transfer in Reinforcement Learning"
https://github.com/openai/coinrun
Last synced: 2 months ago
JSON representation
Code for the paper "Quantifying Transfer in Reinforcement Learning"
- Host: GitHub
- URL: https://github.com/openai/coinrun
- Owner: openai
- License: mit
- Created: 2018-11-19T22:19:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-07T21:33:01.000Z (about 1 year ago)
- Last Synced: 2024-09-27T06:21:21.798Z (3 months ago)
- Language: C++
- Homepage: https://blog.openai.com/quantifying-generalization-in-reinforcement-learning/
- Size: 35 MB
- Stars: 390
- Watchers: 153
- Forks: 86
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-deep-rl - OpenAI Coinrun - Code for the environments used in the paper Quantifying Generalization in Reinforcement Learning. (Environments)
README
**Status:** Archive (code is provided as-is, no updates expected)
# Quantifying Generalization in Reinforcement Learning
#### [[Blog Post]](https://blog.openai.com/quantifying-generalization-in-reinforcement-learning/) [[Paper]](https://drive.google.com/file/d/1U1-uufB_ZzQ1HG67BhW9bB8mTJ6JtS19/view)
This is code for the environments used in the paper [Quantifying Generalization in Reinforcement Learning](https://drive.google.com/file/d/1U1-uufB_ZzQ1HG67BhW9bB8mTJ6JtS19/view) along with an example training script.
Authors: Karl Cobbe, Oleg Klimov, Chris Hesse, Taehoon Kim, John Schulman
![CoinRun](coinrun.png?raw=true "CoinRun")
## Install
You should install the package in development mode so you can easily change the files. You may also want to create a virtualenv before installing since it depends on a specific version of OpenAI baselines.
This environment has been used on Mac OS X and Ubuntu 16.04 with Python 3.6.
```
# Linux
apt-get install mpich build-essential qt5-default pkg-config
# Mac
brew install qt open-mpi pkg-configgit clone https://github.com/openai/coinrun.git
cd coinrun
pip install tensorflow==1.12.0 # or tensorflow-gpu
pip install -r requirements.txt
pip install -e .
```Note that this does not compile the environment, the environment will be compiled when the `coinrun` package is imported.
## Try it out
Try the environment out with the keyboard:
```
python -m coinrun.interactive
```If this fails, you may be missing a dependency or may need to fix `coinrun/Makefile` for your machine.
Train an agent using PPO:
```
python -m coinrun.train_agent --run-id myrun --save-interval 1
```After each parameter update, this will save a copy of the agent to `./saved_models/`. Results are logged to `/tmp/tensorflow` by default.
Run parallel training using MPI:
```
mpiexec -np 8 python -m coinrun.train_agent --run-id myrun
```Train an agent on a fixed set of N levels:
```
python -m coinrun.train_agent --run-id myrun --num-levels N
```Train an agent on the same 500 levels used in the paper:
```
python -m coinrun.train_agent --run-id myrun --num-levels 500
```Train an agent on a different set of 500 levels:
```
python -m coinrun.train_agent --run-id myrun --num-levels 500 --set-seed 13
```Continue training an agent from a checkpoint:
```
python -m coinrun.train_agent --run-id newrun --restore-id myrun
```Evaluate an agent's final training performance across N parallel environments. Evaluate K levels on each environment (NxK total levels). Default N=20 is reasonable. Evaluation levels will be drawn from the same set as those seen during training.
```
python -m coinrun.enjoy --train-eval --restore-id myrun -num-eval N -rep K
```Evaluate an agent's final test performance on PxNxK distinct levels. All evaluation levels are uniformly sampled from the set of all high difficulty levels. Although we don't explicitly enforce that the test set avoid training levels, the probability of collisions is negligible.
```
mpiexec -np P python -m coinrun.enjoy --test-eval --restore-id myrun -num-eval N -rep K
```Run simultaneous training and testing using MPI. Half the workers will train and half will test.
```
mpiexec -np 8 python -m coinrun.train_agent --run-id myrun --test
```View training options:
```
python -m coinrun.train_agent --help
```Watch a trained agent play a level:
```
python -m coinrun.enjoy --restore-id myrun --hres
```Train an agent to play RandomMazes:
```
python train_agent.py --run-id random_mazes --game-type maze --use-lstm 1
```Train an agent to play CoinRun-Platforms, using a larger number of environments to stabilize learning:
```
python train_agent.py --run-id coinrun_plat --game-type platform --num-envs 96 --use-lstm 1
```There's an example random agent script in [`coinrun/random_agent.py`](coinrun/random_agent.py) which you can run like so:
```
python -m coinrun.random_agent
```## Docker
There's also a `Dockerfile` to create a CoinRun docker image:
```
docker build --tag coinrun .
docker run --rm coinrun python -um coinrun.random_agent
```## Colab
There's also a [Colab notebook](https://colab.research.google.com/drive/1e2Eyl8HANzcqPheVBMbdwi3wqDv41kZt) showing how to setup CoinRun.
See [LICENSES](ASSET_LICENSES.md) for asset license information.