mirror of https://github.com/explosion/spaCy.git
lemma property to return hash instead of unicode
This commit is contained in:
parent
8cefc58abc
commit
fbf48b3f9f
|
@ -269,8 +269,8 @@ cdef class Token:
|
||||||
"""
|
"""
|
||||||
def __get__(self):
|
def __get__(self):
|
||||||
if self.c.lemma == 0:
|
if self.c.lemma == 0:
|
||||||
lemma = self.vocab.morphology.lemmatizer.lookup(self.orth_)
|
lemma_ = self.vocab.morphology.lemmatizer.lookup(self.orth_)
|
||||||
return lemma
|
return self.vocab.strings[lemma_]
|
||||||
else:
|
else:
|
||||||
return self.c.lemma
|
return self.c.lemma
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue