-
Notifications
You must be signed in to change notification settings - Fork 6
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
how to make feature dim arbitrary? #4
Comments
Besides changing the Python code, you also need to modify the variable in CUDA rasterizer here: feature-splatting-inria/submodules/diff-gaussian-rasterization/cuda_rasterizer/config.h Line 16 in c902e40
|
Hi, thanks for your kind reply.
Meanwhile, I change the attribute in
but the output dim of |
Line 104 in c902e40
matches the allocated buffer size here (which should match the value in CONFIG.h: |
Thanks for your timely reply, I'll check it follow your instructions |
Any updates on this? |
I tried modify |
That's good to know! I am closing the issue as it has been resolved. |
Hi, I encoounter an issue when I want to change the
feature dim
from16
to36
or4
. I found this is controlled byself.distill_feature_dim
in ModelParams Class andself.distill_feature_dim
must align with(self.sh_degree + 1) ** 2
But after I done above, and the feature dim of shs is equal to distill_feats
but the feature dim of return value
rendered_feat
is still16
whenever I changeself.sh_degree
to1
or5
(whichself.distill_feature_dim
is4
or36
)I wanna know how to change feature dim of
rendered_feat
?The text was updated successfully, but these errors were encountered: