mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
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
Block a user