All Projects → StanfordASL → Trajectron

StanfordASL / Trajectron

Licence: mit
Code accompanying "The Trajectron: Probabilistic Multi-Agent Trajectory Modeling with Dynamic Spatiotemporal Graphs" by Boris Ivanovic and Marco Pavone.

Projects that are alternatives of or similar to Trajectron

Mit 6.s094
MIT-6.S094: Deep Learning for Self-Driving Cars Assignments solutions
Stars: ✭ 74 (-1.33%)
Mutual labels:  jupyter-notebook
Mml Book.github.io
Companion webpage to the book "Mathematics For Machine Learning"
Stars: ✭ 9,488 (+12550.67%)
Mutual labels:  jupyter-notebook
Computer vision project
计算机视觉项目实战
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Image retrieval
Image retrieval system demo based on caffe and lsh
Stars: ✭ 74 (-1.33%)
Mutual labels:  jupyter-notebook
Mit Deep Learning
Tutorials, assignments, and competitions for MIT Deep Learning related courses.
Stars: ✭ 8,912 (+11782.67%)
Mutual labels:  jupyter-notebook
Covid 19
Data analysis and visualizations of daily COVID cases report
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Selective Joint Fine Tuning
Codes and models for the CVPR 2017 spotlight paper "Borrowing Treasures from the Wealthy: Deep Transfer Learning through Selective Joint Fine-tuning".
Stars: ✭ 74 (-1.33%)
Mutual labels:  jupyter-notebook
Urbanregionfunctionclassification
第五届百度西安交大大数据竞赛 城市区域功能分类 Baseline
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Nlp Tutorial
Natural Language Processing Tutorial for Deep Learning Researchers
Stars: ✭ 9,895 (+13093.33%)
Mutual labels:  jupyter-notebook
Piaic islamabad batch3
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Pug classifier
Deep Learning for Pugs
Stars: ✭ 74 (-1.33%)
Mutual labels:  jupyter-notebook
Pygslib
GSLIB fortran code wrapped into python
Stars: ✭ 74 (-1.33%)
Mutual labels:  jupyter-notebook
Smartnoise Samples
Code samples and documentation for SmartNoise differential privacy tools
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Ml Examples
some machine learning examples
Stars: ✭ 74 (-1.33%)
Mutual labels:  jupyter-notebook
Practicalsessions2019
Materials for the practical sessions at EEML2019
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Squeezenet Neural Style Pytorch
Lightweight implementation of neural style in Pytorch with SqueezeNet
Stars: ✭ 74 (-1.33%)
Mutual labels:  jupyter-notebook
Pytorch Book
PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》)
Stars: ✭ 9,546 (+12628%)
Mutual labels:  jupyter-notebook
Ml Webinar
Machine Learning with sklearn tutorials (for Pearson)
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Weibosentiment
基于各种机器学习和深度学习的中文微博情感分析
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Deetctionupperbound
Code for calculating the upper bound AP in object detection
Stars: ✭ 74 (-1.33%)
Mutual labels:  jupyter-notebook

NOTE: A new version of the Trajectron has been released! Check out Trajectron++!

The Trajectron: Probabilistic Multi-Agent Trajectory Modeling with Dynamic Spatiotemporal Graphs

This repository contains the code for The Trajectron: Probabilistic Multi-Agent Trajectory Modeling with Dynamic Spatiotemporal Graphs by Boris Ivanovic and Marco Pavone.

Installation

First, we'll create a conda environment to hold the dependencies.

conda create --name dynstg python=3.6 -y
source activate dynstg
pip install -r requirements.txt

Then, since this project uses IPython notebooks, we'll install this conda environment as a kernel.

python -m ipykernel install --user --name dynstg --display-name "Python 3.6 (DynSTG)"

Now, you can start a Jupyter session and view/run all the notebooks with

jupyter notebook

When you're done, don't forget to deactivate the conda environment with

source deactivate

Scripts

Run any of these with a -h or --help flag to see all available command arguments.

  • code/train.py - Trains a new Trajectron.
  • code/test_online.py - Replays a scene from a dataset and performs online inference with a trained Trajectron.
  • code/evaluate_alongside_sgan.py - Evaluates the performance of the Trajectron against Social GAN. This script mainly collects evaluation data, which can be visualized with sgan-dataset/Result Analyses.ipynb.
  • code/compare_runtimes.py - Evaluates the runtime of the Trajectron against Social GAN. This script mainly collects runtime data, which can be visualized with sgan-dataset/Runtime Analysis.ipynb.
  • sgan-dataset/Qualitative Plots.ipynb - Can be used to visualize predictions from the Trajectron alone, or against those from Social GAN.

Datasets

The preprocessed datasets are available in this repository, under data/ folders (i.e. sgan-dataset/data/).

If you want the original ETH or UCY datasets, you can find them here: ETH Dataset and UCY Dataset.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].