Reproduce the Axelrod iterated prisoners dilemma tournament
Project description
Axelrod
Goals
A Python library with the following principles and goals:
Enabling the reproduction of previous Iterated Prisoner’s Dilemma research as easily as possible.
Creating the de-facto tool for future Iterated Prisoner’s Dilemma research.
Providing as simple a means as possible for anyone to define and contribute new and original Iterated Prisoner’s Dilemma strategies.
Emphasizing readability along with an open and welcoming community that is accommodating for developers and researchers of a variety of skill levels.
Features
With Axelrod you:
have access to over 200 strategies, including original and classics like Tit For Tat and Win Stay Lose Shift. These are extendable through parametrization and a collection of strategy transformers.
can create head to head matches between pairs of strategies.
can create tournaments over a number of strategies.
can study population dynamics through Moran processes and an infinite population model.
can analyse detailed results of tournaments and matches.
can visualise results of tournaments.
can reproduce a number of contemporary research topics such as fingerprinting of strategies and morality metrics.
The library has 100% test coverage and is extensively documented. See the documentation for details and examples of all the features: http://axelrod.readthedocs.org/
An open reproducible framework for the study of the iterated prisoner’s dilemma: a peer reviewed paper introducing the library (22 authors).
Installation
The library requires Python 3.5 or greater.
The simplest way to install is:
$ pip install axelrod
To install from source:
$ git clone https://github.com/Axelrod-Python/Axelrod.git $ cd Axelrod $ python setup.py install
Quick Start
The following runs a basic tournament:
>>> import axelrod as axl >>> axl.seed(0) # Set a seed >>> players = [s() for s in axl.demo_strategies] # Create players >>> tournament = axl.Tournament(players) # Create a tournament >>> results = tournament.play() # Play the tournament >>> results.ranked_names ['Defector', 'Grudger', 'Tit For Tat', 'Cooperator', 'Random: 0.5']
Examples
https://github.com/Axelrod-Python/tournament is a tournament pitting all the strategies in the repository against each other. These results can be easily viewed at http://axelrod-tournament.readthedocs.org.
https://github.com/Axelrod-Python/Axelrod-notebooks contains a set of example Jupyter notebooks.
https://github.com/Axelrod-Python/Axelrod-fingerprint contains fingerprints (data and plots) of all strategies in the library.
Contributing
All contributions are welcome!
You can find helpful instructions about contributing in the documentation: http://axelrod.readthedocs.org/en/latest/tutorials/contributing/index.html
Publications
You can find a list of publications that make use of or cite the library on the citations page.
Contributors
The library has had many awesome contributions from many great contributors. The Core developers of the project are:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for Axelrod-4.7.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a93b7112d30d6804d8475c0b6ee9e1d6a8d0a0a296d254c653818f8d57676ecc |
|
MD5 | fbf3f8944bb26dfd90ff70631b4f89cc |
|
BLAKE2b-256 | 72f208cffea18e1783c467e4ca67d2568e232dc21ea7af99350c0e2aed24e4e2 |