Skip to content

Commit

Permalink
Add info about lemmatizer
Browse files Browse the repository at this point in the history
  • Loading branch information
gutfeeling committed Sep 18, 2020
1 parent a1b0721 commit 87c4e83
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,20 @@ Lemmatizers are more accurate than Stemmers because they produce a base form tha

Word Forms tries to solve this problem by finding all possible forms of a given English word. It can perform verb conjugations, connect noun forms to verb forms, adjective forms, adverb forms, plularize singular forms etc.

## Bonus: A simple lemmatizer

We also offer a very simple lemmatizer based on ``word_forms``. Here is how to use it.

```python
>>> from word_forms.lemmatizer import lemmatize
>>> lemmatize("operations")
'operant'
>>> lemmatize("operate")
'operant'
```

Enjoy!

## Compatibility

Tested on Python 3.7.4
Expand Down

0 comments on commit 87c4e83

Please sign in to comment.