Metadata-Version: 2.1
Name: tjc-gym
Version: 0.1.0
Summary: OpenAI Gym environment of Traffic Junction with continuous action space
Home-page: https://github.com/jakobdybdahl/tjc-gym
Author: Jakob Dybdahl, Rasmus Thorsen
Author-email: dybdahl@smukand.dk
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# tjc-gym

Traffic Juntion Continuous (tjc) is a continuous version of the environment Traffic Junction defined in [Learning Multiagent Communication
with Backpropagation](https://arxiv.org/pdf/1605.07736.pdf). The environment is based on OpenAI Gym and has an continouos observation and action space where the original is discrete.

# Installation

Through PyPi:

```bash
pip install tjc-gym
```

Or directly by cloning repo:

```bash
git clone https://github.com/jakobdybdahl/tjc-gym.git
cd tjc-gym
pip install -e .
```

# Usage

```python
import gym

env = gym.make('tjc_gym:TrafficJunctionContinuous6-v0')
done = [False] * env.n_agents
score = 0

obs = env.reset()
while not all(done):
  env.render()
  actions = [acsp.sample() for ascp in env.action_space]
  obs_, rewards, done, info = env.step(actions)
  score += sum(rewards)


```

# Reference

If you want to site our work, please see the citation file in the repo for details. Through GitHub it is possible to 'Cite this repository' and get a BibTeX reference - it can be found in the 'About' section of this repo.

# Acknowledgement

This environment was developed by [RasmusThorsen](https://github.com/RasmusThorsen) and [jakobdybdahl](https://github.com/jakobdybdahl) to complement our master thesis at @ [Aarhus University](https://www.au.dk/).


