mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
12 lines
301 B
Cython
12 lines
301 B
Cython
from os import path
|
|
|
|
from ..parts_of_speech cimport NOUN, VERB, ADJ
|
|
|
|
from ..lemmatizer import Lemmatizer
|
|
|
|
|
|
cdef class EnPosTagger(Tagger):
|
|
"""A part-of-speech tagger for English"""
|
|
def make_lemmatizer(self, data_dir):
|
|
return Lemmatizer(path.join(data_dir, 'wordnet'), NOUN, VERB, ADJ)
|