mirror of https://github.com/explosion/spaCy.git
* Map NIL to empty string in tag map
This commit is contained in:
parent
20e909d2bb
commit
7488821677
|
@ -22,7 +22,7 @@
|
||||||
"JJS": {"pos": "adj", "degree": "sup"},
|
"JJS": {"pos": "adj", "degree": "sup"},
|
||||||
"LS": {"pos": "punct", "numtype": "ord"},
|
"LS": {"pos": "punct", "numtype": "ord"},
|
||||||
"MD": {"pos": "verb", "verbtype": "mod"},
|
"MD": {"pos": "verb", "verbtype": "mod"},
|
||||||
"NIL": {"pos": "no_tag"},
|
"NIL": {"pos": ""},
|
||||||
"NN": {"pos": "noun", "number": "sing"},
|
"NN": {"pos": "noun", "number": "sing"},
|
||||||
"NNP": {"pos": "noun", "nountype": "prop", "number": "sing"},
|
"NNP": {"pos": "noun", "nountype": "prop", "number": "sing"},
|
||||||
"NNPS": {"pos": "noun", "nountype": "prop", "number": "plur"},
|
"NNPS": {"pos": "noun", "nountype": "prop", "number": "plur"},
|
||||||
|
|
Loading…
Reference in New Issue