Merge pull request #1168 from gispk47/master

Update zh language error
This commit is contained in:
Ines Montani 2017-07-01 11:43:12 +02:00 committed by GitHub
commit 0c7f5af5ee

View File

@ -8,4 +8,5 @@ class Chinese(Language):
def make_doc(self, text):
import jieba
words = list(jieba.cut(text, cut_all=True))
words=[x for x in words if x]
return Doc(self.vocab, words=words, spaces=[False]*len(words))