Skip to content

MIT-SPARK/LP2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LP2: Language-based Probabilistic Long-term Prediction

This repository contains the code for LP2, our approach for Long-term Human Trajectory Prediction using 3D Dynamic Scene Graphs.

This project was supported by Amazon, Lockheed Martin, and the Swiss National Science Foundation (SNSF).

Table of Contents

Credits

Setup

Examples

Paper

If you find this useful for your research, please consider citing our paper:

  • Nicolas Gorlo, Lukas Schmid, and Luca Carlone, "Long-Term Human Trajectory Prediction using 3D Dynamic Scene Graphs", in IEEE Robotics and Automation Letters, doi: 10.1109/LRA.2024.3482169, 2024. [ Paper | Preprint | Video ]
     @ARTICLE{Gorlo2024LP2,
      author={Gorlo, Nicolas and Schmid, Lukas and Carlone, Luca},
      journal={IEEE Robotics and Automation Letters}, 
      title={Long-Term Human Trajectory Prediction using 3D Dynamic Scene Graphs}, 
      year={2024},
      doi={10.1109/LRA.2024.3482169}}
    

Video

An overview of our approach is available on YouTube:

Youtube Video

OpenAI API Setup

Our method uses the OpenAI API to predict interactions between humans and the scene. To use the OpenAI API, you need to create an account and obtain an API key. You can find more information on the OpenAI API here. Specifically, you need to setup an account and buy Pay-as-you-go credits to be able to use the API. Our code relies on the following environment variables to access the OpenAI API. These will be associated with your personal account:

export OPENAI_API_KEY=???
export OPENAI_API_ORG=???

Once your account is set up, the keys are available in the OpenAI profile tab.

Installation

  1. Clone the repository
git clone [email protected]:MIT-SPARK/LP2.git
cd LP2
  1. Create a python 3.10 environment (using pyenv)
pyenv install 3.10.15
pyenv virtualenv 3.10.15 LP2
pyenv activate LP2
  1. Install the required packages
pip install -r requirements.txt

Dataset

To download the dataset, run:

python scripts/download_data.py

Running

The main script of our codebase will first run the pipeline for each trajectory in the selected split of the dataset. Then, it will evaluate the predictions and save the results in the output folder. To add additional steps or load checkpoints created while running the method, specify the corresponding parameters in the config file (e.g., 'global_config/global/load_checkpoints', 'project_config/global/animate'). Feel free to adjust the configurations in the config folder or choose another scene config to select the part of the dataset to predict on. The following command will run the pipeline for the LP2 method on the office scene.

python src/lhmp/main.py --run_pipeline "y" \
                            --global_config_file "config/global_config.yaml" \
                            --method_config_file "config/method_configs/project_config_LP2.yaml" \
                            --scene_config_file "config/scene_configs/scene_config_office.yaml"

To run LP2 on your own data, you can bring the data into the same format as the downloaded data and create a new scene config file specifying the paths to the data. Note, that only the parameters scene_graph_path, room_labels_path, and trajectory_dir are required to run the method. The hierarchical 3D scene graph is in the Spark-DSG json format.

Visualization

To plot the negative log likelihood of predictions, use the following command:

python3 scripts/visualize_all.py --methods "LP2" "LP2_instance" \
                                 --scenes "office" "home" \
                                 --n_past_interactions 2 \
                                 --time_lim 60.0 \
                                 --plot_std False