maincold2/Compact-3DGS

Questions about RVQ

Closed this issue · 2 comments

The general codebook operation is to store codebooks and indexes. But in your code, it seems that only the quantized scale and rotation are stored in the final stage. what is the reason for this?

As described in Section 6 in Appendix, quantized attributes do not need to be indexed at every rendering iteration but just indexed once before rendering.
So, we apply VQ at the end of training and store like 3DGS for a simpler implementation, while we assume to store codebooks/indices and calculate the storage of them.

Thank you!

Thank you very much for your prompt reply!