What is the meaning of the parameter 'index'?
peibinchen opened this issue · 4 comments
Hi,
Thanks for your opensource code. I'm curious about the 'index' parameter at https://github.com/USTC3DV/NeRFBlendShape-code/blob/main/nerf/network_tcnn.py#L106 and https://github.com/USTC3DV/NeRFBlendShape-code/blob/main/nerf/renderer.py#L147. How is it used when training?
Thanks.
Also, how is the 'exp_ori' used in the forward function of the network when training?
Hi, both variables are not used in our final training code any more. I forget to delete them in this inference code.
@XuanGhahahaha Thanks for your kindly response. I have two another questions.
(1) https://github.com/USTC3DV/NeRFBlendShape-code/blob/main/nerf/renderer.py#L152 I find that 'A' is used when training. How is it used?
(2) What is the number of rays when training? That is, what is the num_rays in https://github.com/USTC3DV/NeRFBlendShape-code/blob/20265159e5/nerf/utils.py#L62 when training?
A is the alpha value used for mask supervision. num_rays is 1024.