added symbols import

This commit is contained in:
jeannefukumaru 2019-04-01 16:21:06 +08:00 committed by GitHub
parent 745cf0c914
commit a741bed7a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,12 @@
# 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, AUX
# POS explanations for indonesian available from https://www.aclweb.org/anthology/Y12-1014
'''
POS explanations for indonesian available from https://www.aclweb.org/anthology/Y12-1014
'''
TAG_MAP = {
"NSD" : {POS: NOUN},