This page contains example notebooks to train RL agents on highway-env
using several RL libraries.
Using Stable Baselines3
⚠️ Stable Baselines3 does not currently supportgymnasium
. As of now, these notebooks are only compatible with previous versions of highway-env, such ashighway-env==1.5
Train a highway-v0
policy with DQN.
Train a highway-v0
policy with PPO.
Train a highway-v0
policy with DQN, while using image observations and a CNN model architecture.
Train a goal-conditioned parking-v0
policy using the HER implementation from stable-baselines and hyperparameters from the RL Zoo.
Using eleurent/rl-agents
Plan a trajectory on highway-v0
using the OPD implementation from rl-agents.
A tutorial written for RLSS 2019 and demonstrating the principle of model-based reinforcement learning on the parking-v0
task.
Train an intersection-v0
crossing policy using the social attention architecture and the DQN implementation from rl-agents.