A Minimum Price Markov Game modular environment
Project description
Minimum Price Markov Game (MPMG) Environment
Overview
mpmg is a modular environment designed for studying the Minimum Price Markov Game (MPMG), a concept in game theory and algorithmic game theory. It provides an easy-to-use framework for conducting experiments with multiple agents using collusion and cooperation dynamics. This environment is useful for researchers and developers interested in game theory, reinforcement learning, and multi-agent systems.
Features
- Customizable Multi-Agent Environment: Supports different numbers of agents and heterogeneous vs. homogeneous settings.
Project Structure
mpmg/
├── mpmg/ # Main package directory
│ ├── __init__.py # Package initialization
│ └── mpmg_env.py # Environment implementation
├── .gitignore # Ignored files for git
├── README.md # Project description and usage guide
├── setup.py # Installation script
└── LICENSE # License information
Installation
To install the package locally, run the following command from the root directory:
pip install mpmg
This installs the package in "editable" mode, meaning any changes made in the source code will immediately reflect in the installed package.
Requirements
- Python 3.6+
Usage
Input Parameters
num_agents (int): Number of agents. Must be a positive integer, default value is 2.
sigma_beta (float): Heterogeneity level, standard deviation of the power parameters' distribution. Must be in [0,1], default value is 0.
alpha (float): Collusive bid multiplier. Must be > 1.
Methods And Attributes
The MPMGEnv class provides methods for resetting the environment, taking steps, and observing the state, rewards, and dynamics of multi-agent interactions.
Methods
-------
reset():
reset the environment, and returns the initial state
input: no input
output: np.ndarray
step(actions):
returns rewards, next_state and the done use in episodic task.
input: List[int]
output: (np.ndarray, np.ndarray, bool)
Attributes
----------
num_agents (int): Number of agents.
sigma_beta (float): Heterogeneity level.
alpha (float): Collusive bid multiplier.
action_size (int): action space size, which is always 2.
joint_action_size (int): action_size ** num_agents, joint action space size.
beta_size (int): num_agents, the size of the beta parameters array.
state_size (int): num_agents + joint_action_size + beta_size. Size of the observation space. May change upon customization of the state space.
state_space: The observation space is composed of 'action_frequencies', 'joint_action_frequencies', and 'beta_parameters', and is of size state_size.
action_frequencies (np.ndarray(num_agents)): action frequencies of action 1 for each player.
joint_action_frequencies (np.ndarray(joint_action_size)): joint action frequencies for each joint action.
Example use:
# import the environment
from mpmg import MPMGEnv
# Create an instance of the environment
env = MPMGEnv(n_agents=2, sigma_beta=0.0, alpha=1.3)
# Reset the environment
state = env.reset()
# Probably a loop here
for i in range(...):
# Sample actions
actions = [1, 0] # Example of actions array for 2-players
# Take a step in the environment
rewards, next_state, done = env.step(actions)
# Do what you need
...
# Update state
state = next_state
Scenarios
MPMGEnv is a social dilemma based on the Prisoner's Dilemma.
- Full Defection: All agents choose to defect (action 0), Nash Equilibrium.
- Full Cooperation: All agents cooperate (action 1), Pareto Optimal.
- Asymmetric play: actions taken can be separated into two sets, other suboptimal outcome.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contributing
Contributions are welcome! Feel free to open an issue or submit a pull request for improvements, bug fixes, or new features.
Author
Igor Sadoune - igor.sadoune@polymtl.ca
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mpmg-0.2.1.tar.gz.
File metadata
- Download URL: mpmg-0.2.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab5a1e9274bf48a675710e5c84df05cc5bc01e423ef5db2545f1fefec53fab52
|
|
| MD5 |
f31957a76d25a28f1158719bda00cb4a
|
|
| BLAKE2b-256 |
1c5de402344311e296f0cdcd58784d60e361ae27899ed741c3be96e96918fa01
|
File details
Details for the file mpmg-0.2.1-py3-none-any.whl.
File metadata
- Download URL: mpmg-0.2.1-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd2e0f5b0d2cac6a7fb2011526afc76fe744b2399ae1645e61e36c4245c1fd84
|
|
| MD5 |
bd3802236cb945e48c01ab70f4532b07
|
|
| BLAKE2b-256 |
c15827e269329fcb94d6de3f9333f4fb6cebfb2f3dfcab76ed513120bd85a6d5
|