CenterPoint
CenterPoint copied to clipboard
Inference speed
When I check the inference speed of Centerpoint(pointpillars,voxelnet) I get the following FPS (2 task/s, 4.7 task/s).
command I typed is python tools/dist_test.py configs/nusc/pp/nusc_centerpoint_pp_02voxel_two_pfn_10sweep.py --checkpoint nusc_centerpoint_pp_02voxel_two_pfn_10sweep_latest.pth --work_dir nusc_centerpoint_pp_02voxel_two_pfn_10sweep --speed_test
In the repository, however, FPS on Centerpoint(pointpillars) is 31.
is there any problem??
This one is the FPS of Centerpoint(voxelnet1440)
I used the both checkpoints on the repository
it mainly depends on cpu / disk speed. (due to data loading + voxelization), so you will need faster cpu/disk to reproduce the speed.
You can see the profile results in this paper for a slightly different model variant. The speed is also evaluated publicly here https://waymo.com/open/challenges/entry/?challenge=DETECTION_3D&challengeId=DETECTION_3D&emailId=1eabf20b-e3af×tamp=1623380141003212
Thank you for the answer.