https://github.com/aiml-k/highway-env
A minimalist environment for decision-making in autonomous driving
Science Score: 10.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.3%) to scientific vocabulary
Repository
A minimalist environment for decision-making in autonomous driving
Basic Info
- Host: GitHub
- Owner: AIML-K
- License: mit
- Default Branch: master
- Homepage: https://highway-env.readthedocs.io/en/latest/
- Size: 21.8 MB
Statistics
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
https://github.com/AIML-K/highway-env/blob/master/
# highway-env [](https://github.com/eleurent/highway-env/actions?query=workflow%3Abuild) [](https://highway-env.readthedocs.io/en/latest/?badge=latest) [](https://app.codacy.com/manual/eleurent/highway-env?utm_source=github.com&utm_medium=referral&utm_content=eleurent/highway-env&utm_campaign=Badge_Grade_Dashboard) [](https://codecov.io/gh/eleurent/highway-env) [](https://github.com/eleurent/highway-env/graphs/contributors) [](#the-environments) A collection of environments for *autonomous driving* and tactical decision-making tasks## [Try it on Google Colab! ](scripts) ## Installation `pip install --user git+https://github.com/eleurent/highway-env` ## Usage ```python import gym import highway_env env = gym.make("highway-v0") done = False while not done: action = ... # Your agent code here obs, reward, done, info = env.step(action) env.render() ``` ## Documentation Read the [documentation online](https://highway-env.readthedocs.io/). ## Citing If you use the project in your work, please consider citing it with: ```bibtex @misc{highway-env, author = {Leurent, Edouard}, title = {An Environment for Autonomous Driving Decision-Making}, year = {2018}, publisher = {GitHub}, journal = {GitHub repository}, howpublished = {\url{https://github.com/eleurent/highway-env}}, } ``` List of publications & submissions using `highway-env` (please open a pull request to add missing entries): * [Approximate Robust Control of Uncertain Dynamical Systems](https://arxiv.org/abs/1903.00220) (Dec 2018) * [Interval Prediction for Continuous-Time Systems with Parametric Uncertainties](https://arxiv.org/abs/1904.04727) (Apr 2019) * [Practical Open-Loop Optimistic Planning](https://arxiv.org/abs/1904.04700) (Apr 2019) * [^-Rank: Practically Scaling -Rank through Stochastic Optimisation](https://arxiv.org/abs/1909.11628) (Sep 2019) * [Social Attention for Autonomous Decision-Making in Dense Traffic](https://arxiv.org/abs/1911.12250) (Nov 2019) * [Budgeted Reinforcement Learning in Continuous State Space](http://papers.nips.cc/paper/9128-budgeted-reinforcement-learning-in-continuous-state-space/) (Dec 2019) * [Multi-View Reinforcement Learning](http://papers.nips.cc/paper/8422-multi-view-reinforcement-learning) (Dec 2019) * [Reinforcement learning for Dialogue Systems optimization with user adaptation](https://tel.archives-ouvertes.fr/tel-02422691/) (Dec 2019) * [Distributional Soft Actor Critic for Risk Sensitive Learning](https://arxiv.org/abs/2004.14547) (Apr 2020) * [Task-Agnostic Online Reinforcement Learning with an Infinite Mixture of Gaussian Processes](https://arxiv.org/abs/2006.11441) (Jun 2020) ## The environments ### Highway ```python env = gym.make("highway-v0") ``` In this task, the ego-vehicle is driving on a multilane highway populated with other vehicles. The agent's objective is to reach a high speed while avoiding collisions with neighbouring vehicles. Driving on the right side of the road is also rewarded.
An episode of one of the environments available in highway-env.### Merge ```python env = gym.make("merge-v0") ``` In this task, the ego-vehicle starts on a main highway but soon approaches a road junction with incoming vehicles on the access ramp. The agent's objective is now to maintain a high speed while making room for the vehicles so that they can safely merge in the traffic.
The highway-v0 environment.### Roundabout ```python env = gym.make("roundabout-v0") ``` In this task, the ego-vehicle if approaching a roundabout with flowing traffic. It will follow its planned route automatically, but has to handle lane changes and longitudinal control to pass the roundabout as fast as possible while avoiding collisions.
The merge-v0 environment.### Parking ```python env = gym.make("parking-v0") ``` A goal-conditioned continuous control task in which the ego-vehicle must park in a given space with the appropriate heading.
The roundabout-v0 environment.### Intersection ```python env = gym.make("intersection-v0") ``` An intersection negotiation task with dense traffic.
The parking-v0 environment.## The agents Agents solving the `highway-env` environments are available in the [rl-agents](https://github.com/eleurent/rl-agents) and [stable-baselines](https://github.com/hill-a/stable-baselines) repositories. `pip install --user git+https://github.com/eleurent/rl-agents` ### [Deep Q-Network](https://github.com/eleurent/rl-agents/tree/master/rl_agents/agents/dqn)
The intersection-v0 environment.This model-free value-based reinforcement learning agent performs Q-learning with function approximation, using a neural network to represent the state-action value function Q. ### [Deep Deterministic Policy Gradient](https://github.com/openai/baselines/tree/master/baselines/her)
The DQN agent solving highway-v0.This model-free policy-based reinforcement learning agent is optimized directly by gradient ascent. It uses Hindsight Experience Replay to efficiently learn how to solve a goal-conditioned task. ### [Value Iteration](https://github.com/eleurent/rl-agents/blob/master/rl_agents/agents/dynamic_programming/value_iteration.py)
The DDPG agent solving parking-v0.The Value Iteration is only compatible with finite discrete MDPs, so the environment is first approximated by a [finite-mdp environment](https://github.com/eleurent/finite-mdp) using `env.to_finite_mdp()`. This simplified state representation describes the nearby traffic in terms of predicted Time-To-Collision (TTC) on each lane of the road. The transition model is simplistic and assumes that each vehicle will keep driving at a constant speed without changing lanes. This model bias can be a source of mistakes. The agent then performs a Value Iteration to compute the corresponding optimal state-value function. ### [Monte-Carlo Tree Search](https://github.com/eleurent/rl-agents/blob/master/rl_agents/agents/tree_search/mcts.py) This agent leverages a transition and reward models to perform a stochastic tree search [(Coulom, 2006)](https://hal.inria.fr/inria-00116992/document) of the optimal trajectory. No particular assumption is required on the state representation or transition model.
The Value Iteration agent solving highway-v0.
The MCTS agent solving highway-v0.
Owner
- Name: AIML-K
- Login: AIML-K
- Kind: organization
- Repositories: 2
- Profile: https://github.com/AIML-K
AI+Math Lab @ Korea Univ.









