mirror of https://github.com/explosion/spaCy.git
Reorganise Chinese language data
This commit is contained in:
parent
7b86ee093a
commit
a627d3e3b0
|
@ -1,14 +1,21 @@
|
||||||
|
# coding: utf8
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from ..language import Language
|
from ..language import Language
|
||||||
from ..tokens import Doc
|
from ..tokens import Doc
|
||||||
|
|
||||||
|
|
||||||
class Chinese(Language):
|
class Chinese(Language):
|
||||||
lang = u'zh'
|
lang = 'zh'
|
||||||
|
|
||||||
def make_doc(self, text):
|
def make_doc(self, text):
|
||||||
import jieba
|
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))
|
words = list(jieba.cut(text, cut_all=True))
|
||||||
return Doc(self.vocab, words=words, spaces=[False]*len(words))
|
return Doc(self.vocab, words=words, spaces=[False]*len(words))
|
||||||
|
|
||||||
|
|
||||||
EXPORT = Chinese
|
__all__ = ['Chinese']
|
||||||
|
|
Loading…
Reference in New Issue