by CurtiveArticide CC Attribution-NonCommercial 3.0 Unported
This is an implementation of a plugin for Elasticsearch using the implementation of Nakatani Shuyo's language detector.
It uses 3-gram character and a Bayesian filter with various normalizations and feature sampling. The precision is over 99% for 53 languages.
The plugin offers a mapping type to specify fields where you want to enable language detection. Detected languages are indexed into a subfield of the field named 'lang', as you can see in the example. The field can be queried for language codes.
The plugin offers also a REST endpoint, where a short text can be posted to in UTF-8, and the plugin responds with a list of recognized languages.
The plugin allows to specify analysers to be used for each detected languages. By doing this, content field is additionaly indexed into a subfield of the field named using the highest probability detected language code. (see example)
Here is a list of languages code recognized: af ar bg bn cs da de el en es et fa fi fr gu he hi hr hu id it ja kn ko lt lv mk ml mr ne nl no pa pl pt ro ru sk sl so sq sv sw ta te th tl tr uk ur vi zh-cn zh-tw
Thanks to Alexander Reelsen for his OpenNLP plugin, from where I have copied and adapted the mapping type analysis code.
The current version of the plugin is 1.2.0 (Sep 14, 2013)
Prerequisites:
Elasticsearch 0.90.3+
Bintray:
https://bintray.com/pkg/show/general/jprante/elasticsearch-plugins/elasticsearch-langdetect
Command:
./bin/plugin -url http://bit.ly/19RBF3b -install langdetect
Langdetect Plugin | ElasticSearch |
---|---|
master | 0.90.3.x -> master |
1.2.0 | 0.90.3+ |
1.0.0 | 0.20.x |
curl -XDELETE 'localhost:9200/test' curl -XPUT 'localhost:9200/test' curl -XPOST 'localhost:9200/test/article/_mapping' -d ' { "article" : { "properties" : { "content" : { "type" : "langdetect" } } } } ' curl -XPUT 'localhost:9200/test/article/1' -d ' { "title" : "Some title", "content" : "Oh, say can you see by the dawn`s early light, What so proudly we hailed at the twilight`s last gleaming?" } ' curl -XPUT 'localhost:9200/test/article/2' -d ' { "title" : "Ein Titel", "content" : "Einigkeit und Recht und Freiheit für das deutsche Vaterland!" } ' curl -XPUT 'localhost:9200/test/article/3' -d ' { "title" : "Un titre", "content" : "Allons enfants de la Patrie, Le jour de gloire est arrivé!" } ' curl -XGET 'localhost:9200/test/_refresh' curl -XPOST 'localhost:9200/test/_search' -d ' { "query" : { "term" : { "content.lang" : "en" } } } ' curl -XPOST 'localhost:9200/test/_search' -d ' { "query" : { "term" : { "content.lang" : "de" } } } ' curl -XPOST 'localhost:9200/test/_search' -d ' { "query" : { "term" : { "content.lang" : "fr" } } } '
curl -XPOST 'localhost:9200/_langdetect?pretty' -d 'This is a test' { "ok" : true, "languages" : [ { "language" : "en", "probability" : 0.9999971603535163 } ] } curl -XPOST 'localhost:9200/_langdetect?pretty' -d 'Das ist ein Test' { "ok" : true, "languages" : [ { "language" : "de", "probability" : 0.9999993070517024 } ] } curl -XPOST 'localhost:9200/_langdetect?pretty' -d 'Datt isse ne test' { "ok" : true, "languages" : [ { "language" : "no", "probability" : 0.5714251911820175 }, { "language" : "de", "probability" : 0.14285762298521493 }, { "language" : "it", "probability" : 0.14285706984044144 } ] }
Language auto mapping example |
curl -XDELETE 'localhost:9200/test' curl -XPUT 'localhost:9200/test' curl -XPOST 'localhost:9200/test/article/_mapping' -d ' { "article": { "properties": { "content": { "type": "langdetect", "analyzer": "keyword", "fields": { "fr": { "type": "string", "index": "analyzed", "analyzer": "french" }, "en": { "type": "string", "index": "analyzed", "analyzer": "english" } } } } } } ' curl -XPUT 'localhost:9200/test/article/1' -d ' { "content" : "pretty cows in the meadows" } ' curl -XPUT 'localhost:9200/test/article/2' -d ' { "content" : "les jolies vaches sont dans les prés" } ' curl -XGET 'localhost:9200/test/_refresh' curl -XPOST 'localhost:9200/test/_search' -d ' { "query" : { "term" : { "content.lang" : "en" } } } ' curl -XPOST 'localhost:9200/test/_search' -d ' { "query" : { "term" : { "content.lang" : "fr" } } } ' curl -XPOST 'localhost:9200/test/_search' -d ' { "query": { "text": { "content.fr": "vache" } } } curl -XPOST 'localhost:9200/test/_search' -d ' { "query": { "text": { "content": "vache" } } } curl -XPOST 'localhost:9200/test/_search' -d ' { "query": { "text": { "content": "vaches" } } } '
Elasticsearch Langdetect Plugin
Derived work of language-detection by Nakatani Shuyo http://code.google.com/p/language-detection/
Copyright (C) 2012 Jörg Prante
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.