Accurately generate all possible forms of an English word e.g "election" --> "elect", "electoral", "electorate" etc.
Word forms can accurately generate all possible forms of an English word. It can conjugate verbs. It can connect different
parts of speeches e.g noun to adjective, adjective to adverb, noun to verb etc. It can pluralize singular nouns. It does this all in one function. Enjoy!
Some very timely examples 😛
>>> from word_forms.word_forms import get_word_forms
>>> get_word_forms("president")
>>> {'n': {'presidents', 'presidentships', 'presidencies', 'presidentship', 'president', 'presidency'},
'a': {'presidential'},
'v': {'preside', 'presided', 'presiding', 'presides'},
'r': {'presidentially'}}
>>> get_word_forms("elect")
>>> {'n': {'elects', 'electives', 'electors', 'elect', 'eligibilities', 'electorates', 'eligibility', 'elector', 'election', 'elections', 'electorate', 'elective'},
'a': {'eligible', 'electoral', 'elective', 'elect'},
'v': {'electing', 'elects', 'elected', 'elect'},
'r': set()}
>>> get_word_forms("politician")
>>> {'n': {'politician', 'politics', 'politicians'},
'a': {'political'},
'v': set(),
'r': {'politically'}}
>>> get_word_forms("am")
>>> {'n': {'being', 'beings'},
'a': set(),
'v': {'was', 'be', "weren't", 'am', "wasn't", "aren't", 'being', 'were', 'is', "isn't", 'been', 'are', 'am not'},
'r': set()}
>>> get_word_forms("ran")
>>> {'n': {'run', 'runniness', 'runner', 'runninesses', 'running', 'runners', 'runnings', 'runs'},
'a': {'running', 'runny'},
'v': {'running', 'run', 'ran', 'runs'},
'r': set()}
>>> get_word_forms('continent', 0.8) # with configurable similarity threshold
>>> {'n': {'continents', 'continency', 'continences', 'continent', 'continencies', 'continence'},
'a': {'continental', 'continent'},
'v': set(),
'r': set()}
As you can see, the output is a dictionary with four keys. “r” stands for adverb, “a” for adjective, “n” for noun
and “v” for verb. Don’t ask me why “r” stands for adverb. This is what WordNet uses, so this is why I use it too 😃
Help can be obtained at any time by typing the following:
>>> help(get_word_forms)
In Natural Language Processing and Search, one often needs to treat words like “run” and “ran”, “love” and “lovable”
or “politician” and “politics” as the same word. This is usually done by algorithmically reducing each word into a
base word and then comparing the base words. The process is called Stemming.
For example, the Porter Stemmer reduces both “love” and “lovely”
into the base word “love”.
Stemmers have several shortcomings. Firstly, the base word produced by the Stemmer is not always a valid English word.
For example, the Porter Stemmer reduces the word “operation” to “oper”. Secondly, the Stemmers have a high false negative rate.
For example, “run” is reduced to “run” and “ran” is reduced to “ran”. This happens because the Stemmers use a set of
rational rules for finding the base words, and as we all know, the English language does not always behave very rationally.
Lemmatizers are more accurate than Stemmers because they produce a base form that is present in the dictionary (also called the Lemma). So the reduced word is always a valid English word. However, Lemmatizers also have false negatives because they are not very good at connecting words across different parts of speeches. The WordNet Lemmatizer included with NLTK fails at almost all such examples. “operations” is reduced to “operation” and “operate” is reduced to “operate”.
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.
We also offer a very simple lemmatizer based on word_forms
. Here is how to use it.
>>> from word_forms.lemmatizer import lemmatize
>>> lemmatize("operations")
'operant'
>>> lemmatize("operate")
'operant'
Enjoy!
Tested on Python 3
Using pip
:
pip install -U word_forms
Or you can install it from source:
git clone https://github.com/gutfeeling/word_forms.git
pip
or setup.py
pip install -e word_forms
% or
cd word_forms
python setup.py install
Hi, I am Dibya and I maintain this repository. I would love to hear from you. Feel free to get in touch with me
at [email protected].
Word Forms is not perfect. In particular, a couple of aspects can be improved.
If you like this package, feel free to contribute. Your pull requests are most welcome.