-
Notifications
You must be signed in to change notification settings - Fork 6
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
Do you have any API or DEMO for PageRank OR GNN #9
Comments
You can certainly use the framework for that albeit an EFGraph might be more appropriate. We never worked on that tho... |
We found that many papers cites the layered label propagation paper, among which includes graph processing system like GraphX/Gemini/PowerGraph and graph neural network system like P3. Specially, many of them use dataset like uk-2007-05. However, we found those who opened their source code like GraphX/Gemini system tried to transfer the .graph file into <source id, target id> txt format via ArcListASCIIGraph class. After this operation, the graph data loaded into memory is not compressed. So when the graph data is large, there may cause out of memory issue, but we thought what WebGraph/LLP really aims to do is to resolve this memory issue when facing huge large graph. That's really confused me, do you have any suggestion? |
We distribute data in the WebGraph format, and a lot of people use the data, but the same people does not want to use the WebGraph interface, so they convert to ASCII. Sad, but it works for them apparently. |
Totally. The ordering of the graph is a form of clustering. Chunks of consecutive nodes have dense connections. |
Great thx. |
Just one idea, I observed that BVGraph/EVGraph/ASCIIGraph class provide many load and store methods, I think maybe WebGraph could provide more methods for fast random access to a link , such as fast access to neighbors or subgraph for one node. If so, maybe people would more likely trends to use the WebGraph interface rather than convert to ASCII to get coo data format which is not compressed. |
I think you really misunderstood what WebGraph does. Please have a look at ImmutableGraph. |
hi,
I used BVGraph API to load graph of nearly hundreds of billion edges, and the memory cost is nearly 10 GB, that's amazing.
Now as you know graph processing like Pagerank or Graph neural network like GCN are become very populer, so the question is,
Could WebGraph used as storage layer for graph processing and graph neural network ? Do U have any work on this area as part of your anlysis of web graphs and socical networks ? THX.
The text was updated successfully, but these errors were encountered: