Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
06-18-2021 11:42 PM
Hello I have recently started trying Graphsage.
I ran the example on the manual: GraphSAGE - Neo4j Graph Data Science
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.
06-21-2021 08:12 AM
Try dropping the YIELD
statement - that will return all the fields, with the correct field names (the NULL
s mean those field names likely weren't returned in modelInfo)
06-23-2021 05:37 PM
Thank you for the help!
All the sessions of the conference are now available online