mirror of https://github.com/explosion/spaCy.git
* Fix Issue #102: DT tag was mapped to DET.
This commit is contained in:
parent
d03bdaaac9
commit
3b3547251c
|
@ -12,7 +12,7 @@
|
||||||
"AFX": {"pos": "adj", "hyph": "hyph"},
|
"AFX": {"pos": "adj", "hyph": "hyph"},
|
||||||
"CC": {"pos": "conj", "conjtype": "coor"},
|
"CC": {"pos": "conj", "conjtype": "coor"},
|
||||||
"CD": {"pos": "num", "numtype": "card"},
|
"CD": {"pos": "num", "numtype": "card"},
|
||||||
"DT": {"pos": "adj", "prontype": "prn"},
|
"DT": {"pos": "det"},
|
||||||
"EX": {"pos": "adv", "advtype": "ex"},
|
"EX": {"pos": "adv", "advtype": "ex"},
|
||||||
"FW": {"pos": "x", "foreign": "foreign"},
|
"FW": {"pos": "x", "foreign": "foreign"},
|
||||||
"HYPH": {"pos": "punct", "puncttype": "dash"},
|
"HYPH": {"pos": "punct", "puncttype": "dash"},
|
||||||
|
|
Loading…
Reference in New Issue