Open
Conversation
Add a python function "get_max_layer" which returns the "maxlevel_" of the index
Add the Python binding to the functions that returns the node degree (number of neighbors) to a node given its label.
Add the C++ function "getNodeDegree" which returns the count of a node neighbors, given its label.
Author
|
I added a python function get_node_degree binding to the C++ function getNodeDegree which returns the count of neighbors of a node given its label. |
Add the Python function "get_average_degree_at_layer" which returns the average nodes degree for a given layer.
Add the functions "getAverageDegreeAtLayer" and "getAverageDegreeAtLayer0" which return the average node degree at a given layer (level).
Author
|
I added the Python function get_average_degree_at_layer and the corresponding C++ function getAverageDegreeAtLayer0 which returns the average node degree of a given layer (level). These functions is to get more insights and internal information about the structure of the index. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a python function get_max_layer which returns the maxlevel_ of the index.