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
complete_graph.nodes[n]['id'] = n ? why?
sampled_graph.add_node(chosen_node) sampled_graph.add_edge(curr_node, chosen_node)
The 'chosen_node' and 'curr_node' are both 'id' and not real values.
Cause the RW to walk according to the id of the node, not the true value of the node.
The text was updated successfully, but these errors were encountered:
@kirtiJain25
Sorry, something went wrong.
@DeathSentence You can change the code according to your understanding
No branches or pull requests
complete_graph.nodes[n]['id'] = n ? why?
sampled_graph.add_node(chosen_node)
sampled_graph.add_edge(curr_node, chosen_node)
The 'chosen_node' and 'curr_node' are both 'id' and not real values.
Cause the RW to walk according to the id of the node, not the true value of the node.
The text was updated successfully, but these errors were encountered: