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
Dear authors:
In the paper, the X error and Z error is described as
"Formally, the lane-to-lane cost between Xj and Xk is calculated as the square root of the squared sum of point-wise distances over all y-positions,..."
But in the code , the error is calculated as
x_dist_mat_close[i, j] = np.sum(x_dist[:close_range_idx] * both_visible_indices[:close_range_idx]) / np.sum(both_visible_indices[:close_range_idx])
so the error should be Root Mean Squared , the square root of the mean squared sum , is it?
The text was updated successfully, but these errors were encountered:
YieHo-Liu
changed the title
I am concern about the evaluation metrics X and Z error, are that RMSE ?
I am wondering about the evaluation metrics X and Z error, are that RMSE ?
May 7, 2024
Dear authors:
In the paper, the X error and Z error is described as
"Formally, the lane-to-lane cost between Xj and Xk is calculated as the square root of the squared sum of point-wise distances over all y-positions,..."
But in the code , the error is calculated as
x_dist_mat_close[i, j] = np.sum(x_dist[:close_range_idx] * both_visible_indices[:close_range_idx]) / np.sum(both_visible_indices[:close_range_idx])
so the error should be Root Mean Squared , the square root of the mean squared sum , is it?
The text was updated successfully, but these errors were encountered: