Fix inconsistencies in the symbols table

This commit is contained in:
Matthew Honnibal 2018-02-18 13:51:31 +01:00
parent 66496ac8e1
commit dd9b0945af
2 changed files with 4 additions and 2 deletions

View File

@ -85,6 +85,7 @@ cdef enum symbol_t:
SENT_START SENT_START
SPACY SPACY
PROB PROB
LANG
ADJ ADJ
ADP ADP
@ -394,6 +395,7 @@ cdef enum symbol_t:
EVENT EVENT
WORK_OF_ART WORK_OF_ART
LANGUAGE LANGUAGE
LAW
DATE DATE
TIME TIME
@ -452,10 +454,9 @@ cdef enum symbol_t:
prt prt
punct punct
quantmod quantmod
relcl
rcmod rcmod
root root
xcomp xcomp
acl acl
LAW
LANG

View File

@ -459,6 +459,7 @@ IDS = {
"punct": punct, "punct": punct,
"quantmod": quantmod, "quantmod": quantmod,
"rcmod": rcmod, "rcmod": rcmod,
"relcl": relcl,
"root": root, "root": root,
"xcomp": xcomp, "xcomp": xcomp,