How to use Apache spark to implement GraphSAGE?

134 Views Asked by At

I want to use scala and spark to implement Graph algorithm GraphSAGE, then how to do it? Is there any source code?

I want to get the code for my question

1

There are 1 best solutions below

1
On

I haven´t implemented yet this graph algorithms on top of Spark, the only available implementation, as far as I know, for using deep learning for graph analysis is this. It is a spectral graph convolution for semi-supervised learning, and it is a transductive algorithm. It can be used for node classification. I have plans to include more algorithms in the future like GraphSAGE.