Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
12-13-2020 07:15 AM
In https://neo4j.com/docs/graph-data-science/current/algorithms/node-similarity/ similarity algorithm documentation there are a lot of config properties in "General configuration for algorithm execution on an anonymous graph" section, that are not well explained.
For example:
Let's take the example nodes and relationships are these (as in the example in doc page)
Also, let's also consider "strength" field of relationship. Could someone give an example using all those config properties??
CREATE
(alice:Person {name: 'Alice'}),
(bob:Person {name: 'Bob'}),
(carol:Person {name: 'Carol'}),
(dave:Person {name: 'Dave'}),
(eve:Person {name: 'Eve'}),
(guitar:Instrument {name: 'Guitar'}),
(synth:Instrument {name: 'Synthesizer'}),
(bongos:Instrument {name: 'Bongos'}),
(trumpet:Instrument {name: 'Trumpet'}),
(alice)-[:LIKES]->(guitar),
(alice)-[:LIKES]->(synth),
(alice)-[:LIKES {strength: 0.5}]->(bongos),
(bob)-[:LIKES]->(guitar),
(bob)-[:LIKES]->(synth),
(carol)-[:LIKES]->(bongos),
(dave)-[:LIKES]->(guitar),
(dave)-[:LIKES]->(synth),
(dave)-[:LIKES]->(bongos);
Thanks in advance
All the sessions of the conference are now available online