-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Hi, thanks for sharing your inspiring work.
I found a slight difference between the implementation and the paper description.
In the paper the color_network takes the gradient on the canonical points as input normal.

However, it seems that in the code, the color_network takes the gradient on the observation point as input.
Lines 221 to 227 in f842e41
| gradient_o = torch.autograd.grad( | |
| outputs=y, | |
| inputs=x, | |
| grad_outputs=d_output, | |
| create_graph=True, | |
| retain_graph=True, | |
| only_inputs=True)[0] |
Lines 265 to 266 in f842e41
| sampled_color = color_network(appearance_code, pts_canonical, gradients_o, \ | |
| dirs_c, feature_vector, alpha_ratio).reshape(batch_size, n_samples, 3) |
Any hint on this?
Thanks
Guptajakala, RainbowRui and GxhappinessBarbany, phamtrongthang123 and Gxhappiness
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers