Skip to main content

Design, Simulate and Optimize Agent-based Models with Automatic Differentiation.

Reason this release was yanked:

Not required anymore

Project description

This repository contains code corresponding to the paper: "AgentTorch: a Framework for Agent-based Modeling with Automatic Differentiation". The basic framework is given in the figure below:

Agent Torch Framework

1. Installation

Download

To get the latest version of AgentTorch, you can install it directly from git at:

pip install git+https://github.com/AgentTorch/AgentTorch

2. Setup

Hardware

The code has been tested for macOS Catalina 10.1.7 and Ubuntu 22.04.2 LTS. Large-scale experiments are run using NVIDIA TITANX GPU and V100 GPU.

Dependencies

Step 1: Create a virtual environment agent_torch_env. We recommend using python 3.8 and pip as the install.

python3.8 -m venv agent_torch_env
source agent_torch_env/bin/activate

To install python3.8, follow these tutorials for Mac and Ubuntu respectively. To install pip, follow these tutorials for Mac and Ubuntu respectively.

Step 2: Install pytorch and pytorch geometric. We recommend using Pytorch 2.0 and corresponding Pytorch geometric bindings. We recommend following the guides for offical pytorch install and official pytorch-geometric install. We summarize the commands below:

Mac:

# CUDA is not available on MacOS, please use default package
pip install torch torchvision torchaudio
pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv

Ubuntu:

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/${CUDA}
pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.0.0+${CUDA}.html

where ${CUDA} is the CUDA version. We have tested our code on cu118.

Step 3: Install AgentTorch specific dependencies as below:

cd AgentTorch
pip3 install -r requirements.txt

3. AgentTorch overview

Creating a new simulator using AgentTorch involves the following steps:

  1. Defining the configuration: Here we define the variables and functions to be used in the simulator. In this module a Configurator object is to be created to which the variables and functions to be used in the simulator are added as properties. These are then used to instantiate a Runner object. An example for this can be found in nca_simulator.py.
  2. Defining the trainer: This module loads the configuration, the various variables and functions that form the substeps and executes the main simulation and learning loop. Any learning related loss and optimization function need to be defined here. An example for this can be found in "models/nca/trainer.py"
  3. Defining substeps: As described in the figure above, each simulation comprises of multiple substeps. Each substep comprises of the following four functions: observation, action, transition and reward. Each of these need to be defined in a separate module, using the base classes for SubstepObservation, SubstepTransition, SubstepPolicy provided in substep.py. Since these functions need to be differentiable, we provide several differentiable utilities in helpers_soft.py. These can be used to create differentiable variants of operations such as maximum, logical comparison etc. An example for substep definition can be found in nca_evolve.py, covid_quarantine.py
  4. Using helpers: AgentTorch has several useful functions defined in helpers that can be used in defining the various functions. These include library of utilities to support differentiability of substeps, loading public data sources such as from US census and, initialization of state properties and environment networks. For instance, helpers_soft.py include differentiable utilities and helpers_general.py includes uitilies for data reading and writing.

A detailed code specific documentation is provided in create model docs

4. Running examples

You can run a sample experiment with the following command:

cd models/nca
python trainer.py --c config.yaml
cd models/opinion
python trainer.py --c config.yaml

5. Starter Guide

Generate and Interpret config.yaml file

An interactive notebook with step-by-step guide to define and understand a config.yaml is given in config_example_docs.

Build your own AgentTorch model

A step-by-step guide to start a new AgentTorch project is given in starter documentation

6. Issues

The AgentTorch project is under active development and are continually fixing issues. Please feel free to leave a comment at Troubleshooting issues

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agent_torch-0.1.0.tar.gz (18.3 kB view hashes)

Uploaded Source

Built Distribution

agent_torch-0.1.0-py3-none-any.whl (21.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page