Skip to content

ReSonate: A framework for runtime risk assessment of autonomous cyber-physical systems

License

Notifications You must be signed in to change notification settings

scope-lab-vu/Resonate

Repository files navigation

ReSonAte: A Runtime Risk Assessment Framework for Autonomous Systems

ReSonAte uses the information gathered by hazard analysis and assurance cases to build Bow-Tie Diagrams to model hazard propagation paths and capture their relationships with the state of the system and environment. These Bow-tie diagrams are used to synthesize graphical models that are then used at runtime along with the information gathered from prior incidents about the possible environmental hazards and the hypothesis from failure diagnosers and system runtime monitors to estimate the hazard rates at runtime. These hazard rates are then used to determine the likelihood of unsafe system-level consequences captured in the bow-tie diagram.

This repo has the steps to run the ReSonAte framework in the CARLA simulator. We demonstrate the utility of the ReSonAte framework for NHTSA-inspired pre-crash scenarios that are a part of the CARLA Autonomous Driving Challange https://carlachallenge.org/challenge/nhtsa/

Resonate estimated collision rate as the Autonomous Vehicle navigated through a nominal CARLA scene with weather(cloud = 0.0, precipitation = 0.0, deposits = 0.0). The scene gets adverse with high brightness. The B-VAE assurance monitor detects the increase in brightness and its martingale increases. The Blur detectors and Occlusion detector (on left) remain low throughout. The Likelihood of a collision increases with the adverse brightness, and as expected the AV goes very close to the other vehicle stopped in front.

Additional videos of other scenes can be found in the Video Folder

The slides for this work can be found here and a presentation video can be found on YouTube

Installing the CARLA Autonomous Driving setup

The ReSonAte framework implementation in CARLA is built on top of the CARLA AD example from Learning By Cheating. To run the CARLA AD setup with varied weather patterns and evaluate the AV's collision rate, clone this repo.

git clone https://github.com/Shreyasramakrishna90/Resonate-Dynamic-Risk

All python packages used are specified in carla_project/requirements.txt. This code uses CARLA 0.9.9.

You will also need to install CARLA 0.9.9, along with the additional maps. See link for more instructions.

To run this setup first create a virtual environment with python 3.7
conda create -n py37 python=3.7
conda activate py37
cd ${CARLA_ROOT/Carla-AD}  # Change ${CARLA_ROOT} for your CARLA root folder
pip3 install -r PythonAPI/carla/requirements.txt
Download pre-trained Learning Enabled Component

The preitrained LEC is got from Learning By Cheating. Download epoch=24.ckpt file from Wandb.ai

Navigate to the following location to download the pre-trained LEC weights.

bradyz--> Projects --> 2020_carla_challenge_lbc --> Runs --> command_coefficient=0.01_sample_by=even_stage2 --> Files

Alternately, the weights can be downloaded from here

Save the epoch=24.ckpt file to resonate-carla/carla_project folder.

Download the pre-trained B-VAE assurance monitor weights

The B-VAE assurance monitor is designed to detect adversities in the environment such as excessive brightness.

Download the weights from here

Unzip and save the weights to resonate-carla/leaderboard/team_code/detector_code

Running the Carla setup with ReSonAte Collision rate estimation

./CarlaUE4.sh -quality-level=Epic -world-port=2000 -resx=800 -resy=600 -opengl
export CARLA_ROOT=/home/scope/Carla/CARLA_0.9.9      # change to where you installed CARLA
export PORT=2000                                            # change to port that CARLA is running on
export ROUTES=leaderboard/data/routes/route_19.xml          # change to any route generated
export TEAM_AGENT=image_agent.py                            # no need to change
export TEAM_CONFIG=model.ckpt                               # change path to checkpoint
export HAS_DISPLAY=1                                        # set to 0 if you don't want a debug window

./run_agent.sh

This paper can be cited as

@article{hartsell2021resonate,
  title={ReSonAte: A Runtime Risk Assessment Framework for Autonomous Systems},
  author={Hartsell, Charles and Ramakrishna, Shreyas and Dubey, Abhishek and Stojcsics, Daniel and Mahadevan, Nagabhushan and Karsai, Gabor},
  journal={arXiv preprint arXiv:2102.09419},
  year={2021}
}

Acknowledgement

This work was supported by the DARPA Assured Autonomy project and Air Force Research Laboratory. The views presented in this paper are those of the authors and do not reflect the opinion or endorsement of DARPA or ARFL.

License

This repo is released under the MIT License (please refer to the LICENSE file for details). PythonAPI for the CARLA setup was borrowed from the CARLA Leaderboard challenge repo, which is under MIT license. Also, several python scripts including the LEC driving agent was borrowed from dotchen's Learning by cheating repo which is released under MIT license.

About

ReSonate: A framework for runtime risk assessment of autonomous cyber-physical systems

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages