TRAILab / PDV

Point Density-Aware Voxels for LiDAR 3D Object Detection (CVPR 2022)
Apache License 2.0
158 stars 29 forks source link

question about kde implementation. #17

Closed OuyangJunyuan closed 1 year ago

OuyangJunyuan commented 1 year ago

I find the following code in this repo:

return self.kde_func.log_prob(input).sum(-1).exp()

However, I think it should be performed exp before the sum operation. Is there any problem about my understanding?