mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
added symbols import
This commit is contained in:
parent
745cf0c914
commit
a741bed7a7
|
@ -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},
|
Loading…
Reference in New Issue
Block a user