|
Repository Summary
Checkout URI | https://github.com/kaustubhsridhar/constrained_models.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2023-10-17 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
ros2_gym_pybullet_drones | 0.0.1 |
reinforce_controller | 0.0.0 |
a1_description | 0.0.0 |
aliengo_description | 0.0.0 |
auxiliary | 0.0.0 |
laikago_description | 0.0.0 |
mini_cheetah_description | 0.1.0 |
unitree_controller | 0.0.0 |
unitree_legged_control | 0.0.0 |
unitree_legged_msgs | 0.0.0 |
README
Guaranteed Conformance of Neurosymbolic Models to Natural Constraints (ENFORCER)
Our constrained neurosymbolic models outperform the Vanilla and Augmented Lagrangian methods with guarantees on conformance to natural constraints in three case studies
- CARLA – Conformance of a vehicle model to unicycle dynamics with emphasis on no drift at-rest.
![]() |
---|
Overall conformance to unicycle model: Constrained models obtain similar or slightly worse approximation error (expected in light of Theorem 6) but 3 orders-of-magnitude reduction in constraint loss. |
![]() |
Analysis of model predictions at-rest: Augmented Lagrangian and Vanilla methods predict that a car starting from the origin at rest will drift when given zero control inputs. Constrained models accurately predict little to no movement. |
- Artificial Pancreas (AP) – Conformance of AP models to ARMAX model that encodes increasing insulin-decreases glucose constraint.
![]() |
---|
Overall conformance to ARMAX model: Constrained models obtain slightly higher approximation error (expected in light of Theorem 6) but 2 orders-of-magnitude reduction in constraint loss. |
![]() |
Delta-monotonicity Analysis: Augmented Lagrangian and Vanilla methods, unlike Constrained models, violate “increasing insulin, decreases glucose” constraint. |
- PyBullet Drones – Conformance of drone models to quadrotor dynamics with emphasis on hover. See our paper for the complete set of results.
Data and Models
The processed data and trained models can be found inside each case study’s directory at this drive folder.
The raw data is also available inside each case study’s directory at this drive folder.
Alternatively, the instructions to collect all data and train the ARMAX constraint model specifically for AP can be found at README_for_Data_Collection.md.
Training Constrained Neural Network Dynamics Models
Setup conda env:
conda create -n DL_env python=3.8
conda activate DL_env
conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
pip install neupy scipy pybullet
Train vanilla and constrained neural network dynamics models as follows where NAME_OF_ENV can be one of {Carla, Drones, AP, Quadrupeds}
cd scripts
bash run_Vanillas.sh
bash run_{NAME_OF_ENV}.sh
AP delta monotonicity analysis
bash run_delta_monotonicity.sh
Carla prediction drift analysis
bash run_test_at_rest.sh
Some helpful information
- scripts/train.py is the main file. All the bash files above call this file with different arguments. If loading data and models from the drive link above, set –only_eval.
- scripts/dataset.py contains all dataset classes to both load labelled D datasets and create unlabelled \Omega datasets. These classes also create memories (via neupy’s neural gas) in the input space. And compute all lower and upper bounds for each voronoi cell in the input space (where each cell corresponds to one memory).
- scripts/model.py contains the models and trainers. The trainers contain the symbolic wrapper around the neural network. The loss function can be augmented lagrangian or simple MSE.