mirror of https://github.com/explosion/spaCy.git
Merge pull request #2040 from thomasopsomer/fix-lemma
Make token.lemma property return hash instead of unicode
This commit is contained in:
commit
31dcb4af2e
|
@ -269,8 +269,8 @@ cdef class Token:
|
|||
"""
|
||||
def __get__(self):
|
||||
if self.c.lemma == 0:
|
||||
lemma = self.vocab.morphology.lemmatizer.lookup(self.orth_)
|
||||
return lemma
|
||||
lemma_ = self.vocab.morphology.lemmatizer.lookup(self.orth_)
|
||||
return self.vocab.strings[lemma_]
|
||||
else:
|
||||
return self.c.lemma
|
||||
|
||||
|
|
Loading…
Reference in New Issue