Hello I have recently started trying Graphsage.
I ran the example on the manual: https://neo4j.com/docs/graph-data-science/current/algorithms/graph-sage/
I got the following results after running:
CALL gds.beta.graphSage.train(
'persons',
{
modelName: 'exampleTrainModel',
featureProperties: ['age', 'heightAndWeight'],
aggregator: 'mean',
activationFunction: 'sigmoid',
sampleSizes: [25, 10]
}
) YIELD modelInfo as info
RETURN
info.name as modelName,
info.metrics.didConverge as didConverge,
info.metrics.ranEpochs as ranEpochs,
info.metrics.epochLosses as epochLosses
Result:
I am currently using Neo4J desktop with Neo4j 4.2.5
Would appreciate any help on this.