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
As the title says, maybe there is a node called A, and its first feature value is 1. Then there is a node called B with 10 first feature value. Now C1-C25 has their first feature values range from 11 to 12. The first feature values of other nodes are greater than 20. (Assuming that the distances between these nodes are all less than diff.)
For node A, through this function, it will build 25 undirected edges for B, C1-C24. For B, it will build 25 undirected edges for C1-C25. And so, the edge will be repeated multiple times
test code as show:
the result is:
The text was updated successfully, but these errors were encountered:
As the title says, maybe there is a node called A, and its first feature value is 1. Then there is a node called B with 10 first feature value. Now C1-C25 has their first feature values range from 11 to 12. The first feature values of other nodes are greater than 20. (Assuming that the distances between these nodes are all less than diff.)
For node A, through this function, it will build 25 undirected edges for B, C1-C24. For B, it will build 25 undirected edges for C1-C25. And so, the edge will be repeated multiple times
test code as show:
the result is:
The text was updated successfully, but these errors were encountered: