mirror of https://github.com/explosion/spaCy.git
* Remove vocab10k from tokens
This commit is contained in:
parent
11915e5238
commit
ae52f9f38c
|
@ -40,7 +40,6 @@ cdef class Token:
|
||||||
cdef public atom_t sic
|
cdef public atom_t sic
|
||||||
cdef public atom_t norm
|
cdef public atom_t norm
|
||||||
cdef public atom_t shape
|
cdef public atom_t shape
|
||||||
cdef public atom_t vocab10k
|
|
||||||
cdef public atom_t asciied
|
cdef public atom_t asciied
|
||||||
cdef public atom_t prefix
|
cdef public atom_t prefix
|
||||||
cdef public atom_t suffix
|
cdef public atom_t suffix
|
||||||
|
|
|
@ -114,7 +114,6 @@ cdef class Token:
|
||||||
self.sic = lex['sic']
|
self.sic = lex['sic']
|
||||||
self.norm = lex['norm']
|
self.norm = lex['norm']
|
||||||
self.shape = lex['shape']
|
self.shape = lex['shape']
|
||||||
self.vocab10k = lex['vocab10k']
|
|
||||||
self.suffix = lex['asciied']
|
self.suffix = lex['asciied']
|
||||||
self.prefix = lex['prefix']
|
self.prefix = lex['prefix']
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue