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
Dear author
Why get the centroids by concatenating edges with edges.roll(-1, 2) ? # Algorithm 2 Pytorch-Style Pseudocode of Umbrella RepSurf pairs = concat([edges, edges.roll(-1, 2)], dim=-2) # [B,N,K,2,3] centroids = mean(pairs, dim=3) # [B,N,K,3]
# Algorithm 2 Pytorch-Style Pseudocode of Umbrella RepSurf
pairs = concat([edges, edges.roll(-1, 2)], dim=-2) # [B,N,K,2,3]
centroids = mean(pairs, dim=3) # [B,N,K,3]
Why not get centroids by mean(edges, dim-2) directly? # edges: [B, N, K, 3]
# edges: [B, N, K, 3]
I'm confused.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Dear author
Why get the centroids by concatenating edges with edges.roll(-1, 2) ?
# Algorithm 2 Pytorch-Style Pseudocode of Umbrella RepSurf
pairs = concat([edges, edges.roll(-1, 2)], dim=-2) # [B,N,K,2,3]
centroids = mean(pairs, dim=3) # [B,N,K,3]
Why not get centroids by mean(edges, dim-2) directly?
# edges: [B, N, K, 3]
I'm confused.
The text was updated successfully, but these errors were encountered: