Hi,
Recently I read your paper "Recursive Social Behavior Graph for Trajectory Prediction", and I think it is very useful.
I want to ask when will you share the code about this paper. Besides, in your paper, you propose the Exponential L2 Loss and I have some problem about the parameter gamma. Assuming that the history length is 8 and the forecast length is 12, according to the loss function you proposed, which of the following two is the exponential term:
(1) gamma = pred_len = 12, then the exponential terms are [exp(1/12) exp(2/12) ... emp(12/12)]
(2) gamma = obs_len + pred_len = 20, then the exponential terms are [exp(9/20) exp(10/20) ... emp(20/20)]
In this project:https://github.com/ApeironY/PCCSNet/blob/main/utils/metrics.py#L31, you implemented this exponential loss function in code. In your code, gamma = a.shape[1], so the gamma is 12 and I think you implement the exp_l2_loss in the above (1).
But in your paper, you did some ablation study about the parameter gamma: 5 20 50 and then choose the best 20.
If you follow the idea of this code, how much should gamma be set when setting the parameter to other values?
Hi,
Recently I read your paper "Recursive Social Behavior Graph for Trajectory Prediction", and I think it is very useful.
I want to ask when will you share the code about this paper. Besides, in your paper, you propose the Exponential L2 Loss and I have some problem about the parameter gamma. Assuming that the history length is 8 and the forecast length is 12, according to the loss function you proposed, which of the following two is the exponential term:
(1) gamma = pred_len = 12, then the exponential terms are [exp(1/12) exp(2/12) ... emp(12/12)]
(2) gamma = obs_len + pred_len = 20, then the exponential terms are [exp(9/20) exp(10/20) ... emp(20/20)]
In this project:https://github.com/ApeironY/PCCSNet/blob/main/utils/metrics.py#L31, you implemented this exponential loss function in code. In your code,
gamma = a.shape[1], so the gamma is 12 and I think you implement the exp_l2_loss in the above (1).But in your paper, you did some ablation study about the parameter gamma: 5 20 50 and then choose the best 20.
If you follow the idea of this code, how much should gamma be set when setting the parameter to other values?