mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-04 21:50:35 +03:00
* Hack Token class to take lex.dense inplace of the old lex.norm. This needs to be fixed...
This commit is contained in:
parent
69bb022204
commit
564082e48e
|
@ -153,7 +153,7 @@ cdef class Token:
|
||||||
self.postype = lex['pos_type']
|
self.postype = lex['pos_type']
|
||||||
self.sensetype = lex['sense_type']
|
self.sensetype = lex['sense_type']
|
||||||
self.sic = lex['sic']
|
self.sic = lex['sic']
|
||||||
self.norm = lex['norm']
|
self.norm = lex['dense']
|
||||||
self.shape = lex['shape']
|
self.shape = lex['shape']
|
||||||
self.suffix = lex['asciied']
|
self.suffix = lex['asciied']
|
||||||
self.prefix = lex['prefix']
|
self.prefix = lex['prefix']
|
||||||
|
|
Loading…
Reference in New Issue
Block a user