Skip to content

smearle/gym-city

Repository files navigation

The work in this repo was presented and demoed at the 2019 Experimental A.I. in Games (EXAG) workshop, an AIIDE workshop. You can read the paper here: http://www.exag.org/papers/EXAG_2019_paper_21.pdf

Feel free to join the conversation surrounding this work via my Twitter, and on r/MachineLearning.

gym-city

A Reinforcement Learning interface for variable-scale city-planing-type gym environments, including Micropolis (open-source SimCity 1) and a 1-player version of Conway's Game of Life.

Micropolis (SimCity 1)

The player builds places urban structures on a 2D map. In certain configurations, these structures invite population and vertical development. Reinforcement Learning agents are rewarded as a function of population or other city-wide metrics.

breathy

An agent plays on the 16x16 map on which it was trained. A human player helps satisfy demand.

interBully_0

An agent upscales to a 32x32 map without additional training.

interBully_1

(cont'd from above) A human player incites exploration of city-space via deletion of key features.

collab

A human player works alongside an agent trained to maximize traffic.

1-Player Game of Life

The agent interacts with a randomly-initialized Conway's Game of Life board, placing or deleting one cell per tick, seeking to maximize population.

agentGoL

An agent plays on the 16x16 map on which it was trained.

entomb

An agent upscales to a 32x32 map without additional training. A human player sabotages the agent by exploiting oscillators.

Power Puzzle

A SimCity map spawns with one power plant, and several residential zones, all randomly placed, and the bot is restricted to building power lines.

blindLonging

An agent upscales to a 32x32 map without additional training, with mixed results.

casual

Human player gives pointers to the agent.

Installation

Ubuntu

Make sure python >= 3.6 is installed.

For Micropolis, we need the python3 header files, gtk and cairo, and swig:

sudo apt-get install python3-dev libcairo2-dev python3-cairo-dev libgirepository1.0-dev swig
pip install gobject PyGObject

Clone this repository, then, to make Micropolis.

cd gym-city
make install

We also need pytorch, since we'll be using it to build and train our agents, and tensorflow (since baselines depends on it).

To install the python module:

pip3 install -e .

We might need some additional python packages:

pip install cffi mpi4py gym baselines graphviz torchsummary imutils visdom sklearn matplotlib torchsummary

Basic Use

From this directory, run:

from gym_micropolis.envs.corecontrol import MicropolisControl
m = MicropolisControl(MAP_W=50, MAP_H=50)
m.layGrid(4, 4)

Training w/ RL

To use micropolis as a gym environment, install gym.

To train an agent using A2C:

python3 main.py --experiment test_0 --algo a2c --model FullyConv --num-process 24 --map-width 16 --render

To visualize reward, in a separate terminal run: python -m visdom.server

To run inference using the agent we have just trained:

python3 enjoy.py --load-dir <directory/containing/MicropolisEnv-v0.tar> --map-width 16

Generally, agents quickly discover the power-plant + residential zone pairing that creates initial populations, then spend very long at a local minima consisting of a gameboard tiled by residential zones, surrounding a single power plant. On more successful runs, the agent will make the leap toward a smattering of lone road tiles place next to zones, at least one per zone to maximize population density.

I'm interested in emergent transport networks, though I'm not sure the simulation is complex enough for population-optimizing builds to require large-scale transport networks.

We can, however, reward traffic density just enough for continuous/traffic-producing roads to be drawn between zones, but not so much that they billow out into swaths of traffic-exploiting asphalt badlands.

Interacting w/ the Bot

During training and inference, a micropolis gui will be rendered by default. During training, it is the environment of rank 0 if multiple games are being run in parallel. The gui is controlled by the learning algorithm, and thus can be laggy, but is fully interactive, so that a player may build or delete zones during training and inference.

Any action that is successfully performed by the player on the subsection of the larger game-map which corresponds to the bot's play-area, is registered by the bot as an action of its own, sampled from its own action distribution, so that the player can influence the agent's training data in real time.

About

An interface with micropolis for city-building agents, packaged as an OpenAI gym environment

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published