pattern icon indicating copy to clipboard operation
pattern copied to clipboard

Incorrect lemmatization of word "using" (lemmatizes as "used")

Open beowulfenator opened this issue 6 years ago • 2 comments

The word "using" is lemmatized incorrectly:

import pattern.en

print("using", pattern.en.lemma("using"))
print("use", pattern.en.lemma("use"))

The result is:

using used
use use

For comparison, both amusing and amuse return the same lemma amuse.

This issue, in turn, breaks conjugation, so that conjugate("using", "1sg") returns used.

beowulfenator avatar Apr 02 '19 21:04 beowulfenator

Hi I would like to work on this issue

lazyprgmr avatar Jun 03 '19 07:06 lazyprgmr

conjugate("uses", "pl") also returns 'used' which is past tense and should instead be the result of conjugate("uses", "ppl")

david02871 avatar Sep 08 '19 19:09 david02871