我试图弄清楚如何Neoj 4桌面可以用来处理NLP usgin这个blog.一切都很好,直到文本分类的时刻:
CALL apoc.periodic.iterate("
// get all articles
MATCH (node:Article) RETURN node
","
// classify each article
CALL apoc.nlp.gcp.classify.graph(node, {
// we retrieve gcp api key from static value storage
key: apoc.static.get('gcp.apiKey'),
// node property that contains the text
nodeProperty: 'content',
write:true
}) YIELD graph RETURN distinct 'done'",
{batchSize:10})
它不会返回类别,而是返回“The requested URL /v1/documents:classifyText?key=apiKey was not found on this server”(在此服务器上找不到请求的URL/v1/documents:classifyText?key=apiKey)错误
也许这是与GCP证书的东西,但我已经做了一切建议。
1条答案
按热度按时间mepcadol1#
谢谢你阅读我的博客文章!:)
请尝试以下命令:
它会返回什么吗?它应该会返回你的google API密钥。如果它不起作用,你可以尝试将你的API密钥复制到查询中。另一方面,如果
apoc.static.get
能正常工作,也许可以尝试在google控制台中启用你的自然语言API。这可能是一个问题。