mirror of https://github.com/explosion/spaCy.git
Delete tag_map.py
Tag map file is deleted. I will add it later because it was failing validations
This commit is contained in:
parent
7c8721b1bd
commit
ed3397727e
|
@ -1,22 +0,0 @@
|
|||
coding: utf8
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from ...symbols import POS, PUNCT, SYM, ADJ, CCONJ, NUM, DET, ADV, ADP, X, VERB
|
||||
from ...symbols import NOUN, PROPN, PART, INTJ, SPACE, PRON
|
||||
|
||||
|
||||
TAG_MAP = {
|
||||
"INT": {POS: INTJ},
|
||||
"JUNC": {POS: CCONJ},
|
||||
"$": {POS: PUNCT},
|
||||
"PROPOSS": {POS: PRON},
|
||||
"PROQUANT": {POS: PRON},
|
||||
"PROEMP": {POS: PRON},
|
||||
"NUM": {POS: NUM},
|
||||
"N": {POS: NOUN},
|
||||
"AUX": {POS: VERB},
|
||||
"ADV": {POS: ADV},
|
||||
"ADJ": {POS: ADJ},
|
||||
"V": {POS: VERB},
|
||||
"VCOP": {POS: VERB},
|
||||
}
|
Loading…
Reference in New Issue