-
Notifications
You must be signed in to change notification settings - Fork 101
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
Question about leaf nodes unchanged during optimization #106
Comments
I find the following code keeps hierarchical-3d-gaussians/train_post.py Lines 164 to 181 in 85777b1
However, when I use my own dataset, it seems that nothing exists in |
related PR: graphdeco-inria/gaussian-hierarchy#1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In paper 5.1 Optimizing the Hierarchy, you mention "we do not change the leaf nodes during optimization." However, I cannot find the according code in train_post.py.
In train_post.py,
threshold
, the third parameter ofexpand_to_size()
, is set to [0.005, 0.1].hierarchical-3d-gaussians/train_post.py
Lines 66 to 67 in 85777b1
hierarchical-3d-gaussians/train_post.py
Lines 74 to 75 in 85777b1
hierarchical-3d-gaussians/train_post.py
Lines 91 to 99 in 85777b1
I speculate that
limmin
helps keep the leaf nodes unchanged. Since the larger thelimmin
, the lower possibility the leaf nodes will be selected. Is this correct?The text was updated successfully, but these errors were encountered: