mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
22 lines
547 B
Python
22 lines
547 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from ...language import Language
|
|
from ...tokens import Doc
|
|
|
|
|
|
class Chinese(Language):
|
|
lang = 'zh'
|
|
|
|
def make_doc(self, text):
|
|
try:
|
|
from jieba
|
|
except ImportError:
|
|
raise ImportError("The Chinese tokenizer requires the Jieba library: "
|
|
"https://github.com/fxsjy/jieba")
|
|
words = list(jieba.cut(text, cut_all=True))
|
|
return Doc(self.vocab, words=words, spaces=[False]*len(words))
|
|
|
|
|
|
__all__ = ['Chinese']
|