Safe MARL In Autonomous Driving banner
SafeRL-Lab SafeRL-Lab

Safe MARL In Autonomous Driving

Development community

Description

[IEEE TAI] Safe Multi-Agent Reinforcement Learning to Make decisions in Autonomous Driving.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Safe MARL in Autonomous Driving

This is a pytorch implementation of Constrained Stackelberg Q-learning(discrete action) and Constrained Stackelberg MADDPG(continuous action). These algorithms are proposed by incorporating the Stackelberg model into Deep Q-learning and MADDPG, and leveraging the Lagrangian multiplier method to deal with the safety constraints. The highway environments used in our experiments are modified from [highway-env](https://github.com/Farama-Foundation/HighwayEnv).

1. Installation

# create conda environment
conda create -n env_name python==3.9
conda activate env_name
pip install -r requirements.txt

2. Quick Start

  • create experiment folder, for example, ./merge_env_result/exp2
  • define train config in ./merge_env_result/exp2/config.py
  • define env config in ./merge_env_result/exp2/env_config.py
  • start training by running the following command
  • new highway environment not supported yet due to version conflict
python main_bilevel.py --file-path ./merge_env_result/exp2

3. Demos

3.1 Safe Highway environment

animated animated

3.2 Safe Merge environment

animated

3.3 Safe Roundabout environment

animated

3.4 Safe Intersection environment

animated

3.5 Safe Racetrack environment

animated

4. Results

4.1 Safe Highway Environment

Reward and Training curve
Alt text

4.2 Safe Mer