You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
Thank you so much for this implementation of ref nerf!
I have a question regarding on the gradient of the density to compute the normals. Why is raw_density.sum() used as outputs in torch.autograd as shown here.
Is it different than calculating the gradient as torch.autograd.grad(raw_density, means, grad_outputs=torch.ones_like(raw_density), retain_graph=True). ?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
Thank you so much for this implementation of ref nerf!
I have a question regarding on the gradient of the density to compute the normals. Why is
raw_density.sum()
used as outputs in torch.autograd as shown here.Is it different than calculating the gradient as
torch.autograd.grad(raw_density, means, grad_outputs=torch.ones_like(raw_density), retain_graph=True)
. ?The text was updated successfully, but these errors were encountered: