GitXplorerGitXplorer
l

pommerman

public
0 stars
1 forks
1 issues

Commits

List of commits on branch master.
Unverified
9297ecb254f2ed98e54440671be5211afd3932a9

style: rename pommber to pommer

llewtun committed 6 years ago
Unverified
086ebced5152461c2062cba41786668af6965c74

docs: tweak underlines in README

llewtun committed 6 years ago
Unverified
fb11facc69c2867e944b3767efcafea302f81a53

docs: add basic installation to README

llewtun committed 6 years ago
Unverified
a872c4acce34268085107091378d0c3401bf37ba

chore: add requirements for GPU usage

llewtun committed 6 years ago
Unverified
4765f6510ff8132dcdcf0d7f1fa7c7db3282db00

feat: add Tschumi's script

llewtun committed 6 years ago
Unverified
b6fea07647a3a9f587954c403ec68b2c644eec1d

chore: add requirements and gitignore

llewtun committed 6 years ago

README

The README file for this repository.

Pommerman

What is it?

Attempts to solve the Pommerman challenge

Setup and configuration

Installation

The analysis code requires both Python 3.6.X and pip3 (Python package manager) installed. On Mac OS X, the simplest way to do this is to install python3 with homebrew

brew install python3

which also installs pip. Next, install virtualenv

pip install virtualenv

and fire up a python virtual environment as follows

virtualenv -p python env

Finally, activate the environment

source env/bin/activate

and install the required libraries:

# for running without GPU
pip install -r ./requirements-cpu.txt
# for running with GPU
pip install -r ./requirements-gpu.txt