Skip to content
/ AI_Econ Public

Augmenting the AI Economist environment to have more diverse objective functions and implementing several methods to optimize the environment. We are using a two stage training procedure to attempt to find Stackelberg equilibria. ETHZ RL Project

License

Notifications You must be signed in to change notification settings

Thahit/AI_Econ

Equilibria in an Economy with Heterogeneous Agents

Basis

This repo contains an implementation of Foundation, a framework for flexible, modular, and composable environments that model socio-economic behaviors and dynamics in a society with both agents and governments.

Foundation provides a Gym-style API:

  • reset: resets the environment's state and returns the observation.
  • step: advances the environment by one timestep, and returns the tuple (observation, reward, done, info).

The Foundation of this repository is from:

@misc{2004.13332,
 Author = {Stephan Zheng, Alexander Trott, Sunil Srinivasa, Nikhil Naik, Melvin Gruesbeck, David C. Parkes, Richard Socher},
 Title = {The AI Economist: Improving Equality and Productivity with AI-Driven Tax Policies},
 Year = {2020},
 Eprint = {arXiv:2004.13332},
}

Heterogeneous Agents

The agents were adjusted to have equality and the state of nature as part of their reward structure. For more information, we refer to our report.

Methods

The original training procedure of the AI Economist paper trains the tax agent and active agents concurrently (after the pretraining phase for the active agents).

In order to find Stackelberg Equilibria, one has to train the agents after each other. Following the procedure of Gerstgrasser and Parkes, we implemented meta learning algorithms where the followers (active agents) are trained first to behave well given information about the leaders policy(tax agent), and the leader is trained afterwards. For that several new capabilities had to be added.

The config files of the experiments can be found here. Some experiments include:

Installation Instructions

To get started, you'll need to have Python 3.7+ installed.

Using pip

Simply use the Python package manager:

pip install ai-economist

Installing from Source

  1. Clone this repository to your local machine:
 git clone www.github.com/Thahit/AI_Econ
  1. Create a new conda environment (named "ai-economist" below - replace with anything else) and activate it
 conda create --name ai-economist python=3.7 --yes
 conda activate ai-economist
  1. Install as an editable Python package
 cd ai-economist
 pip install -e .

You can then simply run aiecon once to activate the conda environment.

Testing your Install

To test your installation, try running:

conda activate ai-economist
python -c "import ai_economist"

Getting Started

To familiarize yourself with Foundation, check out the tutorials in the tutorials folder. You can run these notebooks interactively in your browser on Google Colab.

Multi-Agent Simulations

Multi-Agent Training

To run these notebooks locally, you need Jupyter. See https://jupyter.readthedocs.io/en/latest/install.html for installation instructions and (https://jupyter-notebook.readthedocs.io/en/stable/ for examples of how to work with Jupyter.

Structure of the Code

  • The simulation is located in the ai_economist/foundation folder.

The code repository is organized into the following components:

Component Description
base Contains base classes to can be extended to define Agents, Components and Scenarios.
agents Agents represent economic actors in the environment. Currently, we have mobile Agents (representing workers) and a social planner (representing a government).
entities Endogenous and exogenous components of the environment. Endogenous entities include labor, while exogenous entity includes landmarks (such as Water and Grass) and collectible Resources (such as Wood and Stone).
components Components are used to add some particular dynamics to an environment. They also add action spaces that define how Agents can interact with the environment via the Component.
scenarios Scenarios compose Components to define the dynamics of the world. It also computes rewards and exposes states for visualization.

Simulation Cards: Ethics Review and Intended Use

Please see our Simulation Card for a review of the intended use and ethical review of our framework.

License

Foundation and the AI Economist are released under the BSD-3 License.

About

Augmenting the AI Economist environment to have more diverse objective functions and implementing several methods to optimize the environment. We are using a two stage training procedure to attempt to find Stackelberg equilibria. ETHZ RL Project

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages