-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why model output pred_score is all zeros? #62
Comments
When we were developing the code, only Argoverse 1 was available. And the evaluation in Argoverse 1 did not require outputting scores (minFDE, Miss Rate), so the implementation of the set predictor did not consider outputting scores. |
thx for your reply! |
Maybe multiplying these scores to represent a trajectory's score is not reasonable. It would be better to train a score for each trajectory, treating it as a 6-class classification instead of 60-class classification. If using the goal‘s score to represent the trajectory's score, some normalization is required. |
thx!!! |
when inferencing set predictor model, why the output pred_score is all zerors?
I notice that pred_probs is initialized with 'np.zeros((batch_size, 6))' in function: goals_2D_eval() if 'set_predict', and as a output directly.
So we dont need a pred_probs in set predictor mode?
or I miss something?
The text was updated successfully, but these errors were encountered: