nltk_data icon indicating copy to clipboard operation
nltk_data copied to clipboard

Verbnet all lemma list includes NNPs

Open tttthomasssss opened this issue 7 years ago • 0 comments

The first three items in verbnet.lemmas() are "December", "FedEx" and "UPS" (using NLTK 3.3).

The following is a minimal example to reproduce the issue:

In [3]: import nltk

In [4]: nltk.__version__
Out[4]: '3.3'

In [5]: from nltk.corpus import verbnet

In [6]: verbnet.lemmas()[:10]
Out[6]: 
['December',
 'FedEx',
 'UPS',
 'abandon',
 'abase',
 'abash',
 'abate',
 'abbreviate',
 'abduct',
 'abet']

tttthomasssss avatar Oct 31 '18 11:10 tttthomasssss