Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 568 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 568 Bytes

highway-multiagent-env

Multi-agent version of highway_env/intersection at https://github.com/eleurent/highway-env

Installation

git clone and cd into this directory, then pip install -e .

Usage

import gym
import highway_env

env = gym.make("intersection-multiagent-v0")

done = False
while not done:
    action = ... # Your agent code here
    obs, reward, done, info = env.step(action)
    env.render()