You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am a freshman in this antomuous driving model field. I am tryting to understand your code by debugging. However, I have the following questions about anchor and route in your code:
What does the anchor infos mean?
I open this .pkl file and I found the following informations:
Accroding to your paper, do you mean to use a k-means algorithm to cluster all the trajectories in the Nuscene dataset.
My question is that you get this by convert all trajectories to offsets to the current global position and then cluster these offsets into 6 categories? So the anchor is consist of a series offsets (delta x, delta y)?
But why there are four groups anchors in “anchors_all” in this motion_anchor_infos_mode6.pkl?
In fact, I don't understand why do you need this anchor infos?
In your code, the Planner head outputs the final sdc's route prediction. What's the relationship between thsese anchors and the Planning result?
According to your paper and demo, your model not only predicts the sdc's future planning (the ego car), but also predicts all other agent's future planning. I can find that there are groundtruth for both sdc's future traj and all agents' future traj. But the Planner head only output's the sdc's future planning, which part provide the prediction for other agents?
The text was updated successfully, but these errors were encountered:
Because motion forecasting is inherently stochastic, which might have many outcomes. Hence, the trajctory forecasting in the future is a multi-modal problems. In the academic view of this paper, the proposed model regards the trajectory forecasting has multiple outcomes and their likelihoods, which is so called Gaussian mixture model.
To tackel these kind of multi-modal problems, they adopt a the concept of predefined anchors, which have a rich history in
machine learning. The steps are:
They using k-means cluster algorithm to obtain several typical trajctories, which is so called "anchor"! At inference, the proposed model predicts a discrete distribution over theese predefined anchors and, for each anchor, regresses offsets from anchor waypoints along with uncertainties, yielding a Gaussian mixture at each time step.
As for how to get these anchors?
In the dataset, the trajectory is given by some waypoints (x,y) in the global coordinates. At first, these trajectories are converted to agent-centric coordinate frame. Then, using k-means algorithm to cluster these trajectories. In this way, the extracted anchors include typical motion modes which are rotation-invariant and translation-invariant.
Hello, I am a freshman in this antomuous driving model field. I am tryting to understand your code by debugging. However, I have the following questions about anchor and route in your code:
What does the anchor infos mean?
I open this .pkl file and I found the following informations:
Accroding to your paper, do you mean to use a k-means algorithm to cluster all the trajectories in the Nuscene dataset.
My question is that you get this by convert all trajectories to offsets to the current global position and then cluster these offsets into 6 categories? So the anchor is consist of a series offsets (delta x, delta y)?
But why there are four groups anchors in “anchors_all” in this motion_anchor_infos_mode6.pkl?
In fact, I don't understand why do you need this anchor infos?
The text was updated successfully, but these errors were encountered: