Skip to content

coolsunxu/sophie

Repository files navigation

Sophie

This is the implementation of Sophie, an attentive GAN for predicting paths compliant to social and physical constraints, presented at CVPR 2019.

SoPhie: An Attentive GAN for Predicting Paths Compliant to Social and Physical Constraints
Amir Sadeghian, Vineet Kosaraju, Ali Sadeghian, Noriaki Hirose, Hamid Rezatofighi, Silvio Savarese

Architecture

This work addresses the problem of path prediction for multiple interacting agents in a scene, which is a crucial step for many autonomous platforms such as self-driving cars and social robots. We present SoPhie; an interpretable framework based on Generative Adversarial Network (GAN), which leverages two sources of information, the path history of all the agents in a scene, and the scene context information, using images of the scene. To predict a future path for an agent, both physical and social information must be leveraged. Previous work has not been successful to jointly model physical and social interactions. Our approach blends a social attention mechanism with a physical attention that helps the model to learn where to look in a large scene and extract the most salient parts of the image relevant to the path. Whereas, the social attention component aggregates information across the different agent interactions and extracts the most important trajectory information from the surrounding neighbors. SoPhie also takes advantage of GAN to generates more realistic samples and to capture the uncertain nature of the future paths by modeling its distribution. All these mechanisms enable our approach to predict socially and physically plausible paths for the agents and to achieve state-of-the-art performance on several different trajectory forecasting benchmarks.

Reference

@inproceedings{sophie19,
  title={SoPhie: An Attentive GAN for Predicting Paths Compliant to Social and Physical Constraints},
  author={Sadeghian, Amir and Kosaraju, Vineet and Sadeghian, Ali and Hirose, Noriaki and Rezatofighi, Hamid and Savarese, Silvio}
  booktitle={IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
  number={CONF},
  year={2019}
}

Setup

This codebase is based off of the Social GAN codebase and so should be similarily easy to setup and train. To run, adjust the parameters in constants.py and run python train.py. This will periodically save model checkpoints; upon completion run python evaluate.py. The files and class names should be easy to understand - all the data loading happens in data.py, and all the model architectures are defined in models.py.

Our main proposed architectural changes can be found in the physical and social attention modules in models.py, as well as the sorting in the data.py.

Future Work

For efficiency sake, we only attend once per timestep, as experimentally there were not significant accuracy improvements (potentially due to the shorter nature of the trajectories). Some other possible improvements could be:

  • Using a global discriminator instead of a local discriminator

  • Exploring other featurizations to be passed into the encoder (global movement instead of relative movement, calculated agent interactions, etc.)

  • Extend the network to longer trajectory sequences and try attending over every timestep

  • Modify the physical attention to incorporate a coordinate conv.

About

SoPhie: An Attentive GAN for Predicting Paths Compliant to Social and Physical Constraints

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages