https://github.com/redtachyon/cpr_reputation
https://github.com/redtachyon/cpr_reputation
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/redtachyon/cpr_reputation
- Owner: RedTachyon
- Created: 2021-03-07T19:08:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-13T14:26:38.000Z (almost 5 years ago)
- Last Synced: 2025-01-24T15:13:07.870Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 1.11 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Common-pool Resource Problems with Reputation
`cpr_reputation/board.py` is a multi-agent game environment.
## [Weights and Biases](https://wandb.ai/quinn-dougherty/cpr_reputation_gridworld)
### Conda
```
conda env create -f environment.yaml
conda activate cpr-reputation
pytest && pytype cpr_reputation
```
### Pip
You can also do something like venv or pipenv for isolation.
```
pip install -r requirements.txt
pytest && pytype cpr_reputation
```
### Docker
```
docker build -t cpr-reputation .
docker run -it cpr-reputation bin/bash
pytest && pytype cpr_reputation
```