-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
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
Implement Knowledge Graph API for NetworkX Storage #928
Conversation
- Add max_graph_nodes check - Reduce subgraph by degree - Log graph size reduction
lightrag/kg/networkx_impl.py
Outdated
# Get all labels from nodes | ||
labels = set() | ||
for node in self._graph.nodes(): | ||
# node_data = dict(self._graph.nodes[node]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To remove the comments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unnecessary comment removed, thx
I was waiting for this one for long :) |
Hi @danielaskdd, you are doing great job. |
Comments Removed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK
Description
Implement Knowledge Graph API for Networkx Storage
Changes Made
Checklist