You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I install the plugin: bin/elasticsearch-plugin install bin/elasticsearch-plugin install https://github.com/KennFalcon/elasticsearch-analysis-hanlp/releases/download/v7.7.0/elasticsearch-analysis-hanlp-7.7.0.zip
GET _analyze
{
"tokenizer":"hanlp_nlp",
"text":"川普说要让美丽国更加伟大"
}
response like this:
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "failed to find global tokenizer under [hanlp_nlp]"
}
],
"type": "illegal_argument_exception",
"reason": "failed to find global tokenizer under [hanlp_nlp]"
},
"status": 400
}
but hanlp works:
GET _analyze
{
"tokenizer":"hanlp",
"text":"川普说要让美丽国更加伟大"
}
I install the plugin:
bin/elasticsearch-plugin install bin/elasticsearch-plugin install https://github.com/KennFalcon/elasticsearch-analysis-hanlp/releases/download/v7.7.0/elasticsearch-analysis-hanlp-7.7.0.zip
response like this:
but hanlp works:
The text was updated successfully, but these errors were encountered: