-
Notifications
You must be signed in to change notification settings - Fork 31
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
Number of gaussian and shape #35
Comments
Me too, did you figure out what's going on? |
Which part of the code did you use to generate this? |
NO,what do you think about it |
I just use one 4090 and I can train 25600 version |
oh thanks, I will try again |
Hello, I can see the reason why the number of Gaussians has reduced greatly mask = (pred != empty_label) & (opas > 0.75)
means = means[mask] This removes any Gaussian that has an opacity of less than 0.75. In my rendition, this decreases the Gaussian number from 51200 down to 2k to 5k. Huge decrease in the number. I got this via a print statement before and after this mask was applied print('Gaussian number:', means.shape) I assume this is done for quicker visualisation. You can experiment with this mask so we visualise all Gaussians, for which we would change a snippet to |
I am really confused :
1)why number of gaussian sphere seems little and achieve such dense voxel representation
2) why all gaussian seems a sphere rather than Ellipsoid, I think this do not take advantage of gaussian representation.
The text was updated successfully, but these errors were encountered: