mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 01:16:28 +03:00
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):
|
||||
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
Block a user