OccNet icon indicating copy to clipboard operation
OccNet copied to clipboard

The problem of occupancy prediction by bevformer

Open LucasYang567 opened this issue 1 year ago • 0 comments

Hello,

occupancy_classes is set to 16 in the paper, but there are 17 labels in gt_occ (consider free space). So I wanted to ask whether the first (from the original) or the second is more appropriate.

occupancy_preds = occupancy_preds.view(-1, self.occupancy_classes) occupancy_preds = occupancy_preds.view(-1, self.occupancy_classes + 1)

I also found that both options can be trained and the initial loss of the first is much lower than that of the second.

600643356810c8d30d29e95ec0568ef f45e8dafad3e945b8b8924a628540db

LucasYang567 avatar Dec 20 '23 04:12 LucasYang567