Delete tag_map.py

Tag map file is deleted. I will add it later because it was failing validations
This commit is contained in:
Shumi 2021-02-10 20:41:18 +02:00 committed by GitHub
parent 7c8721b1bd
commit ed3397727e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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},
}