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
edge_labels.append([0, 1, 2] + [3, 4] * max_aux) edge_labels.append([1, 0, 5] + [6, 7] * max_aux) edge_labels.append([2, 5, 0] + [8, 9] * max_aux) for idx in range(max_aux): edge_labels.append([3, 6, 8] + [11, 12] * idx + [0, 10] + [11, 12] * (max_aux - idx - 1)) edge_labels.append([4, 7, 9] + [12, 13] * idx + [10, 0] + [12, 13] * (max_aux - idx - 1))
i can not understand the how to get the edge_labels,and what the edge_labels mean
The text was updated successfully, but these errors were encountered:
This is the edge-bias in constructing 14 types of relative positional relationships.
Sorry, something went wrong.
OK,Thanks so much!
No branches or pull requests
edge_labels.append([0, 1, 2] + [3, 4] * max_aux)
edge_labels.append([1, 0, 5] + [6, 7] * max_aux)
edge_labels.append([2, 5, 0] + [8, 9] * max_aux)
for idx in range(max_aux):
edge_labels.append([3, 6, 8] + [11, 12] * idx + [0, 10] + [11, 12] * (max_aux - idx - 1))
edge_labels.append([4, 7, 9] + [12, 13] * idx + [10, 0] + [12, 13] * (max_aux - idx - 1))
i can not understand the how to get the edge_labels,and what the edge_labels mean
The text was updated successfully, but these errors were encountered: