-
Notifications
You must be signed in to change notification settings - Fork 42
Description
Hi guys,
I want to implement in my trainer a measure of similarity between my predicted trajectory and the GT trajectory. Here is an example:
The GT is the red line, my observation is the yellow line (almost hidden by the other participants) and the green line is my prediction. The other agents are not used at this moment.
Now, in order to train my DL based Motion Prediction algorithm I am using the ADE, FDE and NLL losses w.r.t. the GT. Nevertheless, I think that if my prediction does not match exactly the GT but it is in the same centerline (but driving with a different velocity, for example) it will be better. E.g.
This prediction does not match the GT (until the red diamond at the bottom), but at least the shapes of both curves are more or less the same.
How could I do that?

