- Notifications
You must be signed in to change notification settings - Fork6
winkjs/wink-lemmatizer
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
English lemmatizer
Obtain base form orlemma of nouns, verbs and adjectives usingwink-lemmatizer
.
Usenpm to install:
npm install wink-lemmatizer --save
// Load wink-lemmatizervarlemmatize=require('wink-lemmatizer');// Lemmatize adjectiveslemmatize.adjective('farthest');// -> 'far'lemmatize.adjective('coolest');// -> 'cool'lemmatize.adjective('easier');// -> 'easy'// Lemmatize nounslemmatize.noun('knives');// -> 'knife'lemmatize.noun('potatoes');// -> 'potato'lemmatize.noun('men');// -> 'man'// Lemmatize verbslemmatize.verb('eaten');// -> 'eat'lemmatize.verb('pushes');// -> 'push'lemmatize.verb('suggesting');// -> 'suggest'
Check out thelemmatizer API documentation to learn more.
If you spot a bug and the same has not yet been reported, raise a newissue or consider fixing it and sending a pull request.
Wink is a family of open source packages forNatural Language Processing,Machine Learning, andStatistical Analysis in NodeJS. The code isthoroughly documented for easy human comprehension and has atest coverage of ~100% for reliability to build production grade solutions.
wink-lemmatizer is copyright 2017-20GRAYPE Systems Private Limited.
It is licensed under the terms of the MIT License.
About
English lemmatizer
Topics
Resources
License
Code of conduct
Stars
Watchers
Forks
Packages0
No packages published