Skip to main content

Tools for applying reinforcement learning on commonroad scenarios.

Project description

CommonRoad-RL

This repository contains a software package to solve motion planning problems on CommonRoad using Reinforcement Learning algorithms. We currently use the implementation for the RL algorithms from OpenAI Stable Baselines, but the package can be run with any standard (OpenAI Gym compatible) RL implementations.

CommonRoad-RL in a nutshell

import gym
import commonroad_rl.gym_commonroad

# kwargs overwrites configs defined in commonroad_rl/gym_commonroad/configs.yaml
env = gym.make("commonroad-v1",
               action_configs={"action_type": "continuous"},
               goal_configs={"observe_distance_goal_long": True, "observe_distance_goal_lat": True},
               surrounding_configs={"observe_lane_circ_surrounding": True, "lane_circ_sensor_range_radius": 100.},
               reward_type="sparse_reward",
               reward_configs_sparse={"reward_goal_reached": 50., "reward_collision": -100})

observation = env.reset()
for _ in range(500):
    # env.render() # rendered images with be saved under ./img
    action = env.action_space.sample() # your agent here (this takes random actions)
    observation, reward, done, info = env.step(action)

    if done:
        observation = env.reset()
env.close()

Folder structure

commonroad-rl                                           
├─ commonroad_rl
│  ├─ doc                               # Folder for documentation         
│  ├─ gym_commonroad                    # Gym environment for CommonRoad scenarios
|     ├─ action                         # Action and Vehicle modules
|     ├─ observation                    # Observation modules
|     ├─ reward                         # Reward and Termination modules
|     ├─ utils                          # Utility functions for gym_commonroad
│     ├─ configs.yaml                   # Default config file for actions, observations, rewards, and termination conditions,
										  as well as for observation space optimization and reward coefficient optimization
│     ├─ commonroad_env.py              # CommonRoadEnv(gym.Env) class
│     └─ constants.py                   # Script to define path, vehicle, and draw parameters
│  ├─ hyperparams                       # Config files for default hyperparameters for various RL algorithms                                       
│  ├─ tests                             # Test system of commmonroad-rl.
│  ├─ tools                             # Tools to validate, visualize and analyze CommonRoad .xml files, as well as preprocess and convert to .pickle files.                                         
│  ├─ utils_run                         # Utility functions to run training, tuning and evaluating files                                      
│  ├─ README.md                                                      
│  ├─ evaluate_model.py                 # Script to evaluate a trained RL model on specific scenarios and visualize the scenario                
│  ├─ generate_solution.py              # Script to genearte CommonRoad solution files from trained RL models.
│  ├─ train_model.py                    # Script to train RL model or optimize hyperparameters or environment configurations           
│  ├─ sensitivity_analysis.py           # Script to run sensitivity analysis for a trained model
│  └─ plot_learning_curves.py           # Plot learning curves with provided training log files.                
├─ scripts                              # Bash scripts to install all dependencies, train and evaluate RL models, as well as generate CommonRoad solution files from trained RL models.
├─ README.md                                            
├─ commonroad_style_guide.rst           # Coding style guide for this project                
├─ environment.yml                                      
└─ setup.py                                      

Installation

Installation using Docker

Detailed instructions under ./commonroad_rl/install_docker/readme_docker.md

Prerequisites

This project should be run with conda. Make sure it is installed before proceeding with the installation.

  1. download & install conda, and init anaconda to work from the terminal. tested on conda 4.5; 4.9, 4.10
~/anaconda3/bin/conda init
# for minconda
~/miniconda3/bin/conda init
  1. clone this repository
git clone https://gitlab.lrz.de/tum-cps/commonroad-rl.git
  1. install build packages
sudo apt-get update
sudo apt-get install build-essential make cmake
  1. setup a new conda env (or install packages to an existing conda env e.g. myenv conda env update --name myenv --file environment.yml)
conda env create -n cr37 -f environment.yml
git lfs pull

(optional) Install commonroad-interactive-scenarios if you want to evaluate a trained model with SUMO interactive scenarios.

  1. (optional) install pip packages for the docs. If you want to use the jupyter notebook, also install jupyter.
source activate cr37
pip install -r commonroad_rl/doc/requirements_doc.txt
conda install jupyter

Install mpi4py and commonroad-rl manually

conda install --quiet -y  -c conda-forge mpi4py==3.1.3
pip install -e .

Test if installation succeeds

Further details of our test system refer to ./commonroad_rl/tests.

source activate cr37
bash scripts/run_test.sh

Usage

Tutorials

To get to know the package, please check ./commonroad_rl/tutorials for further details.

Python scripts

The commonroad_rl folder contains the source files. There are Python scripts for training, evaluating, and visualizing models. The most important scrips are explained in ./commonroad_rl/README.md and can be run with your Python executable. They are especially useful if you are developing a new feature or want to debug a specific part of the training.

Bash scripts

If you tested your codes already and everything runs smoothly on your computer and you now want to run the real experiments on larger dataset, the bash scripts help you with that. The are located in ./scripts. They can be used for training with PPO and TD3 and testing an agent. Always adapt the specific paths in the scripts to the corresponding paths on your machine and check the comments in the file to determine which arguments have to be provided.

References and Suggested Guides

  1. OpenAI Stable Baselines: the implementation of RL algorithms used in our project.
  2. OpenAI Spinning Up: we do not use their implementations in our project. But they provide quite nice explanations of RL concepts.
  3. OpenAI Gym: general interface.
  4. OpenAI Safety Gym: a special collection of Gyms for safe RL. Configurable as our project.

Publication

If you use CommonRoad-RL in your paper, please cite:

@inproceedings{Wang2021,
	author = {Xiao Wang and  Hanna Krasowski and  Matthias Althoff},
	title = {{CommonRoad-RL}: A Configurable Reinforcement Learning Environment for Motion Planning of Autonomous Vehicles},
	booktitle = {Proc. of the IEEE International Conference on Intelligent Transportation Systems (ITSC)},
	year = {2021},
	pages={466--472},
}

Configurations and trained models used in our experiments in the paper can be downloaded here.

Models trained with current version of code using the same configurations can be downloaded here

Contact:

commonroad@lists.lrz.de

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

commonroad-rl-2023.1.tar.gz (171.1 kB view details)

Uploaded Source

Built Distribution

commonroad_rl-2023.1-py3-none-any.whl (215.0 kB view details)

Uploaded Python 3

File details

Details for the file commonroad-rl-2023.1.tar.gz.

File metadata

  • Download URL: commonroad-rl-2023.1.tar.gz
  • Upload date:
  • Size: 171.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for commonroad-rl-2023.1.tar.gz
Algorithm Hash digest
SHA256 9b4d57f5358cb7b3211f7d3723dc78c40ddc3d25ec3b1be122b30f00e475949e
MD5 78af9dfcf82f9f299224a9bc9eaf9ad4
BLAKE2b-256 b51781f4efb0220f3f62d0907f9040b55c9a9e386a71e98ea5f97a9b3dd90210

See more details on using hashes here.

File details

Details for the file commonroad_rl-2023.1-py3-none-any.whl.

File metadata

  • Download URL: commonroad_rl-2023.1-py3-none-any.whl
  • Upload date:
  • Size: 215.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for commonroad_rl-2023.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0d975c5d0de2bb46da351f2ab815445862d7d03d00e4c8bcc3ef40fcbbfe1bd6
MD5 54976c07423f9efa1db140e83b8a8153
BLAKE2b-256 fecdf18bc9c8dd2fce1c0ac0983f04cc5993c861357f65dcc68544bd8c1131c4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page