* Add todo to morphology.lemmatize

This commit is contained in:
Matthew Honnibal 2015-11-03 18:54:35 +11:00
parent ffedff9e6c
commit dde9e1357c

View File

@ -88,6 +88,8 @@ cdef class Morphology:
return orth
cdef unicode py_string = self.strings[orth]
if pos != NOUN and pos != VERB and pos != ADJ and pos != PUNCT:
# TODO: This should lower-case
# return self.strings[py_string.lower()]
return orth
cdef set lemma_strings
cdef unicode lemma_string