mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-04 21:50:35 +03:00
* Fix attribute getters and setters in Lexeme
This commit is contained in:
parent
623329b19a
commit
07c09a0e1b
|
@ -60,19 +60,19 @@ cdef class Lexeme:
|
||||||
def __set__(self, int x): self.c.suffix = x
|
def __set__(self, int x): self.c.suffix = x
|
||||||
|
|
||||||
property cluster:
|
property cluster:
|
||||||
def __get__(self): return self.c.suffix
|
def __get__(self): return self.c.cluster
|
||||||
def __set__(self, int x): self.c.suffix = x
|
def __set__(self, int x): self.c.cluster = x
|
||||||
|
|
||||||
property prob:
|
property prob:
|
||||||
def __get__(self): return self.c.suffix
|
def __get__(self): return self.c.prob
|
||||||
def __set__(self, int x): self.c.suffix = x
|
def __set__(self, float x): self.c.prob = x
|
||||||
|
|
||||||
property lower_:
|
property lower_:
|
||||||
def __get__(self): return self.vocab.strings[self.c.lower]
|
def __get__(self): return self.vocab.strings[self.c.lower]
|
||||||
def __set__(self, unicode x): self.c.lower = self.vocab.strings[x]
|
def __set__(self, unicode x): self.c.lower = self.vocab.strings[x]
|
||||||
|
|
||||||
property norm_:
|
property norm_:
|
||||||
def __get__(self): return self.c.norm
|
def __get__(self): return self.vocab.strings[self.c.norm]
|
||||||
def __set__(self, unicode x): self.c.norm = self.vocab.strings[x]
|
def __set__(self, unicode x): self.c.norm = self.vocab.strings[x]
|
||||||
|
|
||||||
property shape_:
|
property shape_:
|
||||||
|
@ -80,11 +80,11 @@ cdef class Lexeme:
|
||||||
def __set__(self, unicode x): self.c.shape = self.vocab.strings[x]
|
def __set__(self, unicode x): self.c.shape = self.vocab.strings[x]
|
||||||
|
|
||||||
property prefix_:
|
property prefix_:
|
||||||
def __get__(self): return self.c.prefix
|
def __get__(self): return self.vocab.strings[self.c.prefix]
|
||||||
def __set__(self, unicode x): self.c.prefix = self.vocab.strings[x]
|
def __set__(self, unicode x): self.c.prefix = self.vocab.strings[x]
|
||||||
|
|
||||||
property suffix_:
|
property suffix_:
|
||||||
def __get__(self): return self.c.suffix
|
def __get__(self): return self.vocab.strings[self.c.suffix]
|
||||||
def __set__(self, unicode x): self.c.suffix = self.vocab.strings[x]
|
def __set__(self, unicode x): self.c.suffix = self.vocab.strings[x]
|
||||||
|
|
||||||
property flags:
|
property flags:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user