DeepGraphLearning / graphvite

GraphVite: A General and High-performance Graph Embedding System
https://graphvite.io
Apache License 2.0
1.22k stars 151 forks source link

Does the graphvite support weighted graph ? #27

Closed zhenhuascut closed 4 years ago

zhenhuascut commented 4 years ago

I am not sure whether the graphvite support weighted graph. Can you implement the weighted DeepWalk?

KiddoZhu commented 4 years ago

Sorry I didn't write it in the document. The system does support weighted graph through the same interface.

For graphs, the line format is [head] [tail] [weight]. For knowledge graphs, the line format is [head] [relation] [tail] [weight].

zhenhuascut commented 4 years ago

Thanks for responding! When I follow the source code today, I found it. I will test some weighted graphs and see how it performs. I will give you the feedback soon.

KiddoZhu commented 4 years ago

Fixed in document.