2017-05-08 16:54:36 +03:00
|
|
|
# coding: utf8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-05-08 23:29:04 +03:00
|
|
|
from ...language import Language
|
|
|
|
from ...tokens import Doc
|
2016-04-24 19:44:24 +03:00
|
|
|
|
|
|
|
|
|
|
|
class Chinese(Language):
|
2017-05-08 16:54:36 +03:00
|
|
|
lang = 'zh'
|
2016-05-05 12:39:12 +03:00
|
|
|
|
2016-11-02 21:57:38 +03:00
|
|
|
def make_doc(self, text):
|
2017-05-08 16:54:36 +03:00
|
|
|
try:
|
2017-10-16 16:21:33 +03:00
|
|
|
import jieba
|
2017-05-08 16:54:36 +03:00
|
|
|
except ImportError:
|
|
|
|
raise ImportError("The Chinese tokenizer requires the Jieba library: "
|
|
|
|
"https://github.com/fxsjy/jieba")
|
2017-09-14 20:23:13 +03:00
|
|
|
words = list(jieba.cut(text, cut_all=False))
|
|
|
|
words = [x for x in words if x]
|
2016-11-02 21:57:38 +03:00
|
|
|
return Doc(self.vocab, words=words, spaces=[False]*len(words))
|
2017-05-03 12:01:42 +03:00
|
|
|
|
|
|
|
|
2017-05-08 16:54:36 +03:00
|
|
|
__all__ = ['Chinese']
|