abduallahmohamed / Social-STGCNN

Code for "Social-STGCNN: A Social Spatio-Temporal Graph Convolutional Neural Network for Human Trajectory Prediction" CVPR 2020
MIT License
483 stars 141 forks source link

PROBLEM About TCN #60

Closed Ian-Shih closed 2 years ago

Ian-Shih commented 2 years ago

Hi, I see there are two functions ( self. tpcnns and self. tcn ) in your model. Could you tell me the difference between them? They seem just like normal Convolutions.

Both of them use Conv2D, but as is known to me, TCN uses Conv1D, doesn't it?

And, TCN has two points (Causal Convolution and Dilated Convolution), but I can't find these points in your code.

Looking forward to your reply.

abduallahmohamed commented 2 years ago

Our TXPCNN is a form of a TCN but built differently. It treats time as a feature channel where the conv1d TCN iirc treats time as a pixel. Nonetheless, the core concept is using CNNs to process time sequences.