Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hyperparameter settings in SST #22

Closed
lihao0374 opened this issue Mar 31, 2022 · 3 comments
Closed

Hyperparameter settings in SST #22

lihao0374 opened this issue Mar 31, 2022 · 3 comments

Comments

@lihao0374
Copy link

lihao0374 commented Mar 31, 2022

Great job.

I still have a few questions and look forward to your answers:
If I want to try SST on a dataset with low density (LiDAR with 32 lasers), how should I modify the hyperparameters in SST.
If I use a smaller voxel size (0.16, 0.16, 6), how should I adjust the hyperparameters in SST, such as drop info, window shape settings and so on?

@Abyssaledge
Copy link
Collaborator

Although I have not tried this setting, my suggestions are (in the refactored version):

window_shape = (20, 20, 1) ~ (24, 24, 1)
drop_info  = {
    0:{'max_tokens':30, 'drop_range':(0, 30)},
    1:{'max_tokens':60, 'drop_range':(30, 60)},
    2:{'max_tokens':100, 'drop_range':(60, 100)},
    3:{'max_tokens':150, 'drop_range':(100, 1000)},
}

Remember to change the sparse_shape according to your point cloud range and voxelization size.
And if I were you, I might draw the distribution of the number of pillars in a window to determine the drop_info.

@lihao0374
Copy link
Author

lihao0374 commented Mar 31, 2022

Thank you for your reply.

In addition, I notice that only 'x,y,z' of points are used during training, and the intensity information in Waymo dataset is not used. What is the reason for this?

@Abyssaledge
Copy link
Collaborator

The intensity in Waymo is not normalized, using them directly may lead to NaN output. It's fine to use it If you clip or normalize it into a reasonable range.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants