-
Hi @njroussel Could you please tell me whether the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @gerwang Let me point you to a few different sources so you can check this for yourself too:
Now for your questions:
|
Beta Was this translation helpful? Give feedback.
-
There remains one thing not intuitive to me: If automatic differentiation is used, is there anything involved with randomness? Does it make a difference whether we set different seeds in primal and backward modes? |
Beta Was this translation helpful? Give feedback.
Even with automatic differentiation, there are still practically two renderings:
eval()
path in theRenderOp
).dr.backward(loss)
(it will trigger thebackward()
path in theRenderOp
). This one will use automatic differentiation on its output but it must still be de-correlated from the primal.Does that make sense?