Skip to content

Simulations and Jupyer Notebooks that provide an indepeth analysis of the Beer Distribution Game. Training autonomous agents to play the game using a reinforcement learning approach.

Notifications You must be signed in to change notification settings

viniciuspr88/beergame

 
 

Repository files navigation

Having Fun With the Beer Distribution Game

Computational notebooks, agent-based simulations and AI training algorithms

The Beer Game was developed in the 1960s at MIT to illustrate how difficult it is to manage dynamic systems – in this case a supply chain that delivers beer from a brewery to the end consumer.

This repository contains computational notebooks, simulation models and AI training algorithms that explore the game in depth.

Please read the companion blog posts on our website. You can also find a companion slidedeck on slides.com

Have a go at playing the Beer Game (on your own or – much more fun – in a group) before you read the notebooks:

  • A single player version of the Beer Game can be found on our website.
  • We also have a multiplayer version of the Beer Game set up as a docker container.

The notebooks use the BPTK-Py package, which provides System Dynamics and Agent-based modeling in Python.

Repository Contents

Notebooks

  • Understanding the Beergame. This is the best place to get started - play the Beer Game in single player mode and learn about the dynamics governing the game. This version uses a System Dynamics implementation of the Beer Game.
  • An Agent-based Approach To Modeling the Beer Game. An agent-based simulation of the beergame that can be used to test policies. It is also used as the basis for the reinforcement learning apporach described in the following notebook.
  • Training AI to play the Beer Game – A Reinforcement Learning Approach. This notebook introduces the concept of reinforcement learning and then applies it to training intelligent agents to play the Beer Game.

Models

This repository contains two simulation models of the Beer Game - one build using System Dynamics and one built using Agent-based modeling. Both models produce identical results.

The SD version was built with Stella Architect, it can be found in the simulation_models directory. This version of the simulation is used in the Understanding the Beergame notebook.

The ABM version can be found in the src directory. This version is is used in the An Agent-based Approach To Modling the Beergame and Training AI to Play The Beer Game notebooks.

Installation And Testing Instructions

Installing using Docker

If you have Docker installed (e.g. Docker Desktop on MacOS or on Windows), follow these steps:

  • On the command line, move into a directory where you would like to store the Beergame repository.
  • Clone the BPTK-Py tutorial repository using git clone: `git clone https://github.com/transentis/beergame.git
  • Run docker-compose up
  • Point your browser at http://localhost:8888 – this will open JupyterLab showing the contents of your directory.

Installing using a Python virtual environment

Alternatively you can install using a Python virtual environment:

  1. Clone this repo in a directory of your choice: git clone
  2. Make sure you have python3 installed
  3. Change into the repo and setup a python venv: python3 -m venv venv
  4. Activate the venv: source venv/bin/activate
  5. Install the required modules: pip install -r requirements.txt
  6. Install the jupyter lab widgets: jupyter labextension install @jupyter-widgets/jupyterlab-manager
  7. Start jupyter lab: jupyter lab

Testing Your Installation

Once you have installed, to make sure everything is working open the notebook beergame_abm.ipynb and run all the cells - there should be no error messages and the last graph should look like the one below.

Notebook Screenshot

If you have any questions, let us know via email to [email protected].

About

Simulations and Jupyer Notebooks that provide an indepeth analysis of the Beer Distribution Game. Training autonomous agents to play the game using a reinforcement learning approach.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 98.4%
  • Python 1.6%