我正在使用python弹性搜索,我需要进行文档聚类。我已经安装了carrot2(https://github.com/carrot2/elasticsearch-carrot2)。
如何在
之后从python中调用胡萝卜群集模块from elasticsearch import Elasticsearch
es = Elasticsearch()
es.search(.....)
答案 0 :(得分:0)
ES的Carrot2插件可让您访问
中的群集文档http://localhost:9200/_plugin/carrot2/ (or wherever your ES node is deployed)
查看github项目页面中的usage guide。
pyelasticsearch不支持carrot2集群访问。您可以在pyelasticsearch的搜索结果之上应用carrot2。如果您需要使用carrot2,请查看carrot2 project。另外,请看一些python文本聚类工具here。