简体   繁体   中英

NEO4j, Storing more than `3` models in the catalog is available with a licensed Graph Data Science library

I am using NEO4j to do graph embedding. This is the document I follow. When I am running the code in Neo4j.

CALL gds.beta.graphSage.train(
  'noPropertiesGraph',
  {
    modelName: 'myModel',
    featureProperties: ['degree']
  }
)
YIELD trainMillis
RETURN trainMillis

I met this error. How do I solve this? 在此处输入图像描述

Graph Data Science GDS library has its own separate license for its Enterprise Edition, which is not covered under Neo4j Enterprise Edition. You might wanna drop some of your older models to get this working.

Check this GitHub discussion .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM