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
"ground" is defined as np.zeros((len(target_lanes), 1, self.p.grid_yself.p.grid_x, self.p.grid_yself.p.grid_x)), so ground[batch_index][0][i] += gt_one will report IndexError
The text was updated successfully, but these errors were encountered:
Some parts are never reached. The parts are not necessary. I forgot to remove them after some experiments.
temp is reshaped by "temp = temp[temp>-1]" ((1, self.p.grid_y, self.p.grid_x) -> (self.p.grid_y*self.p.grid_x))
(Sorry, this is not readable. reshape method is more suitable. )
Also, other indexes are ok.
The text was updated successfully, but these errors were encountered: