Skip to content

idsc-frazzoli/rule-hierarchies

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rule Hierarchies

Code style: black NVIDIA Source Code License Python 3.9

About

This package allows creation of STL rule hierarchies and computing their rank-preserving rewards, as detailed in this paper: https://arxiv.org/pdf/2212.03323.pdf.

Installation

To setup this package:

  • clone this repository and then pip install -e .

Details

The core code is in rule_hierarchy/rule_hierarchy.py. The AbstractRuleHierarchy class is responsible for evaluating the STL rule hierarchy while the RuleHierarchy class takes the user-specified hierarchy and transforms it into an STL rule hierarchy. The user-specified rule hierarchy is communicated to RuleHierarchy as a list of Rule objects, ordered in decreasing order of importance; some examples of rules are provided in the rules directory.

A demo of how to build a rule hierarchy is provided in demo/simple_demo.py.

How To Use

The main steps to setting up your custom rule hierarchy are:

  • Create a subclass of Rule tailored to the specific rule being implemented in the rules directory.
    • The class should have a as_stl_formula() and a prepare_signals() method which generates an STLCG formula and a properly shaped signal for STLCG to evaluate, respectively.
    • Examples of how to formulate the rule class can be found in the rules directory.
    • Include an import to the class in __init__.py in rules/__init__.py.
  • Create an ordered list of rules, e.g., rules = [AlwaysGreater(1.0), AlwaysLesser(2.0)] and pass it to the RuleHierarchy class to create a rule hierarchy; see demo/simple_demo.py for a simple example.

Demo

A simple demo of how to use the rule hierarchy is presented in demo/simple_demo.py and a more involved demo that demonstrates planning with a continuous optimizer is provided in demo/optimization_demo.py.

Citation

Please cite the relevant paper if you use this code:

@article{veer2022receding,
  title={Receding Horizon Planning with Rule Hierarchies for Autonomous Vehicles},
  author={Veer, Sushant and Leung, Karen and Cosner, Ryan and Chen, Yuxiao and Karkus, Peter and Pavone, Marco},
  journal={arXiv preprint arXiv:2212.03323},
  year={2022}
}

Contributors

  1. Sushant Veer
  2. Apoorva Sharma

License

The source code is released under the NSCL licence.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%