Ewerton R. Vieira*, Aravind Sivaramakrishnan*, Sumanth Tangirala, Edgar Granados, Konstantin Mischaikow, Kostas E. Bekris
2024 IEEE International Conference on Robotics and Automation (ICRA), 2024. Best Paper Award in Automation finalist.
MORALS combines autoencoding neural networks with Morse Graphs. It first projects the dynamics of the controlled system into a learned latent space. Then, it constructs a reduced form of Morse Graphs representing the bistability of the underlying dynamics, i.e., detecting when the controller results in a desired versus an undesired behavior.
pip install MORALS
- Download the Pendulum (LQR) dataset or Other Robot Controllers.
- Extract and place it inside
examples/data/
. There should be a directorypendulum_lqr1k
and a labels filependulum_lqr1k_success.txt
. - Train the autoencoder and latent dynamics networks:
python train.py --config pendulum_lqr.txt
. - Obtain the Morse Graph and the Regions of Attraction (RoAs) for the learned latent space dynamics:
python get_MG_RoA.py --config pendulum_lqr.txt --name_out pendulum_lqr --RoA --sub 16
.
- Add a Python class corresponding to your system to
MORALS/systems/
. At the very least, you must provide a name for your system so that its corresponding object can be returned byMORALS.systems.utils.get_system()
. - Generate a config file for your system and place it inside
examples/config/
. You can follow the format of the example config files provided. - Follow the steps above to train the autoencoder and latent dynamics networks using your custom config file, and then obtain the Morse Graph and the RoAs.
If you find this repository useful in your work, please consider citing:
@inproceedings{morals2024,
title={{\tt MORALS}: Analysis of High-Dimensional Robot Controllers via Topological Tools in a Latent Space},
author={Ewerton R. Vieira* and Aravind Sivaramakrishnan* and Sumanth Tangirala and Edgar Granados and Konstantin Mischaikow and Kostas E. Bekris},
booktitle={ICRA},
year={2024},
}