Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
11-09-2021 05:20 PM
Hi there,
This is my first time trying to use Data Science Algorithm, and I want to use node similarity for finding similarity between users of my system.
My question is, for node similarity algorithm, does it calculate the similarity based on only the first order neighbours or all the way to the end of the path of one node?
It'd be really great if i can get this clear up. Thank you very much in advance.
Solved! Go to Solution.
11-10-2021 03:31 PM
NodeSimilarity uses only the immediate neighbors in the calculation.
If you want to use the topology of the whole graph, we'd recommend using a node embedding (like FastRP) and combining that with cosine similarity or KNN.
From a computational perspective, comparing nodes baed on their one degree neighbors is expensive - using the same methodology at various depths would be prohibitively slow. What FastRP will do is encode the graph topology around each node into a numerical representation, and then KNN intelligently compares nodes to find the most similar ones based on properties.
11-10-2021 03:31 PM
NodeSimilarity uses only the immediate neighbors in the calculation.
If you want to use the topology of the whole graph, we'd recommend using a node embedding (like FastRP) and combining that with cosine similarity or KNN.
From a computational perspective, comparing nodes baed on their one degree neighbors is expensive - using the same methodology at various depths would be prohibitively slow. What FastRP will do is encode the graph topology around each node into a numerical representation, and then KNN intelligently compares nodes to find the most similar ones based on properties.
11-10-2021 04:32 PM
I see. I did try to use FastRP. However, since my graph has multiple nodes label and several properties on the relationship, i kept getting error. I will try to revisit the codes and see what went wrong.
Thanks Alicia, your explanation made things more clear for me!
All the sessions of the conference are now available online