Tagged Questions
The lemmatization tag has no wiki summary.
7
votes
8answers
9k views
How do I do word Stemming or Lemmatization?
I've tried PorterStemmer and Snowball but both don't work on all words, missing some very common ones.
My test words are: "cats running ran cactus cactuses community communities", and both get less ...
6
votes
2answers
74 views
Efficient Lemmatizer that avoids dictionary lookup
I want to convert string like 'eat' to 'eating', 'eats'. I searched and found the lemmatization as the solution, but all the lemmatizer tools that I have come across uses wordlist or ...
6
votes
10answers
3k views
How to turn plural words singular?
I'm preparing some table names for an ORM, and I want to turn plural table names into single entity names. My only problem is finding an algorithm that does it reliably. Here's what I'm doing right ...
5
votes
2answers
284 views
Analyze text (lemmatization, edit distance)
I need to analyze the text to exist in it banned words. Suppose the black list is the word: "Forbid". The word has many forms. In the text the word can be, for example: "forbidding", "forbidden", ...
4
votes
4answers
178 views
SQL word root matching
I'm wondering whether major SQL engines out there (MS SQL, Oracle, MySQL) have the ability to understand that 2 words are related because they share the same root.
We know it's easy to match ...
4
votes
5answers
840 views
what is the true difference between lemmatization vs stemming?
When do I use each ?
Also...is the NLTK lemmatization dependent upon Parts of Speech?
Wouldn't it be more accurate if it was?
3
votes
2answers
233 views
English lemmatizer databases?
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 ...
2
votes
3answers
268 views
How to find basic, uninflected word for searching?
I am having trouble trying to write a search engine that treats all inflections of a word as the same basic word.
So for verbs these are all the same root word, be:
number/person (e.g. am; is; ...
1
vote
2answers
265 views
Can WordNetLemmatizer in Nltk stem words?
I want to find word stems with Wordnet. Does wordnet have a function for stemming?
I use this import for my stemming, but it doesn't work as expected.
from nltk.stem.wordnet import ...
1
vote
2answers
284 views
Java tool for Lemmatization
I need to perform lemmatization on English, including adjectives:
e.g. Mexican --> Mexico
Can you recommend any tools, preferably in Java.
I want to stress that I am looking for lemmatization, not ...
1
vote
1answer
213 views
Using a lemmatizer in ruby
I have tried using a stemmer but the words it produces are just not upto the mark. It could be great if you could let me know any lemmatizer script there exists for ruby or a lemmatizer gem or an SQL ...
1
vote
2answers
316 views
Inflectional forms of verbs using DBsight lucene?
I know dbsight allows synonyms and stop words for searching but does this take care of inflectional forms of a verb too e.g. for 'swim' it should find swim, swims, swimming, swam, and swum
Link on ...
1
vote
7answers
784 views
Can you programmatically detect pluralizations of English words, and derive the singular form?
The title says it all: Given some (English) word that we shall assume is a plural, is it possible to derive the singular form? I'd like to avoid lookup/dictionary tables if possible.
Some examples:
...
1
vote
2answers
610 views
How is Morpha Lemmatizer Used?
I'm intending to use SQL version of WordNet and I have a problem finding a way to lemmatize words in order to find them in the DB; I can't use the WordNet lemmatizer itself because it is applied to ...
0
votes
1answer
91 views
nltk lemmatizer doesn't know what to do with the word Americans
Ran the following:
from nltk import WordNetLemmatizer as wnl
wnl().lemmatize("American")
wnl().lemmatize("Americans")
Both of which simply return their argument. I would like Americans to reduce ...
-1
votes
1answer
167 views
getting the lemma of a word using wordnet
How can I get the lemma for a given word using Wordnet. I couldn't seem to find in the wordnet documentation what i want. http://wordnet.princeton.edu/wordnet/man/wn.1WN.html
For example for the ...