Questions about RVQ
Closed this issue · 2 comments
asher-bit commented
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?
maincold2 commented
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!
asher-bit commented
Thank you very much for your prompt reply!