Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
12-16-2019 01:59 PM
Hi, all.
Suppose I have this:
(a:Reader)
(b:Book)
(c:Book)
(a)-[:LIKES {weight:5}]->(b)
(a)-[:LIKES {weight:13}]->(c)
And now I want to infer the edge (b)-[:SIMILAR_TO {weight?}]->(c).
That is, I want infer that two books are similar because the same reader liked both of them. The reader liked each book with a different intensity (LIKES(weight)), and I want these weights to influence how similar I think the books are (SIMILAR_TO(weight)).
My question: are there any best practices for inferring SIMILAR_WEIGHT(weight) from the two LIKES(weight) values?
Thanks.
Charlie
12-18-2019 11:21 PM
Hi,
The following article might provide some insights:
Also this about triadic closure:
12-19-2019 09:28 AM
Thanks, Niklas, I'll look.
All the sessions of the conference are now available online