We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After i did these modification #169. Change the lib/knn/init.py and l ib/loss.py showing below
if not refine: if idx[0].item() in sym_list: target = target[0].transpose(1, 0).contiguous().view(3, -1) pred = pred.permute(2, 0, 1).contiguous().view(3, -1) # inds = knn(target.unsqueeze(0), pred.unsqueeze(0)) inds = KNearestNeighbor.apply(target.unsqueeze(0), pred.unsqueeze(0)) target = torch.index_select(target, 1, inds.view(-1).detach() - 1) target = target.view(3, bs * num_p, num_point_mesh).permute(1, 2, 0).contiguous() pred = pred.view(3, bs * num_p, num_point_mesh).permute(1, 2, 0).contiguous()
my system torch version ubuntu 16.04
i got this error:
Can someone helps? Thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After i did these modification #169.
Change the lib/knn/init.py and l ib/loss.py showing below
my system
torch version
ubuntu 16.04
i got this error:
Can someone helps? Thank you
The text was updated successfully, but these errors were encountered: