English lemmatizer databases?

二次信任 提交于 2020-01-31 18:07:10

问题


Do you know any big enough lemmatizer database that returns correct result for following sample words:

geese: goose
plantes: //not found

Wordnet's morphological analyzer is not sufficient, since it gives the following incorrect results:

geese: //not found
plantes: plant

回答1:


MorphAdorner seems to be better at this, but it still finds the incorrect result for "plantes"

plantes: plante
geese: goose

Maybe you'd like to use MorphAdorner to do the lemmatization, and then check its results against WordNet. You can use the WordNet API to perform lookups without first performing lemmatization by calling findtheinfo_ds. This allows you to use a lemmatizer like MorphAdorner first. (If you wanted to use the lemmaitzer, you'd need to call morph separately and call findtheinfo_ds on the lemmas that it returned.)

On the other hand, I only spent about 5 seconds looking at MorphAdorner for this purpose, and there may be a way to eliminate the incorrect "plantes" answer without having to use any other outside resource.




回答2:


Once upon a time, someone suggested Morpha to me, but I haven't used it, so I don't know if it does any better at this than WordNet does.



来源:https://stackoverflow.com/questions/6308185/english-lemmatizer-databases

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!