-
Notifications
You must be signed in to change notification settings - Fork 155
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
I can't find appearance matrix B in code #51
Comments
I print the tensorf below. It shows that self.basis_mat is the matrix B. It has 144*27 weights. The author uses them to express the matrix B. |
@LiuTielong Oh! Now I can understand this part! Thx for your kind comments! |
Hi, thanks to make this great code and paper! I really enjoy this.
In Tensorf paper,
appearance values(A_c(x)) are concatenated and then multiplied by appearance matrix B.
And then, sent this into the decoding function S for RGB color regression.
But in this code ,
TensoRF/models/tensoRF.py
Line 223 in 17deeed
I can't find the appearance matrix B.
I understand that plane_coef_point is matrix M and line_coef_point is vector v.
From this line,
TensoRF/models/tensoRF.py
Line 239 in 17deeed
M and V are multiplied and then go into basis_mat which is nn.Linear(144,27).
And then this 27-dimension outcomes go into positional encoding block and Feature decoding function S.
During this process, I can't find any appearance matrix B mentioned in the paper.
Is the self.basis_mat is matrix B?
If it is not, where is matrix B and what is the self.basis_mat?
The text was updated successfully, but these errors were encountered: