Thanks for your excellent work!
I noticed that you used visible mask to modify the indicator function in Eq.(9) in the paper, which is written as
$$\Psi (t)=\prod (1 - h(t) * m(t))$$
However, it seems that the implementation code (Line 410 in ''udf_renderer_blending.py'') is written as
$$\Psi (t)=\prod (1 - h(t) + flip\_saturation*m(t))$$,
and the variable $flip\_saturation$ increases from 0 to 1 along with the training progress. Would you please explain why using ''add'' instead of ''multiply'' to deal with the indicator function? And what is the role of $flip\_saturation$ here?
Thanks again!
Thanks for your excellent work!
$$\Psi (t)=\prod (1 - h(t) * m(t))$$
$$\Psi (t)=\prod (1 - h(t) + flip\_saturation*m(t))$$ ,$flip\_saturation$ increases from 0 to 1 along with the training progress. Would you please explain why using ''add'' instead of ''multiply'' to deal with the indicator function? And what is the role of $flip\_saturation$ here?
I noticed that you used visible mask to modify the indicator function in Eq.(9) in the paper, which is written as
However, it seems that the implementation code (Line 410 in ''udf_renderer_blending.py'') is written as
and the variable
Thanks again!