Port over change from #1323 and tidy up

This commit is contained in:
Ines Montani 2017-09-14 19:23:13 +02:00 committed by GitHub
parent d4ca6cef9e
commit bd3da3d6fb

View File

@ -14,7 +14,7 @@ class Chinese(Language):
except ImportError: except ImportError:
raise ImportError("The Chinese tokenizer requires the Jieba library: " raise ImportError("The Chinese tokenizer requires the Jieba library: "
"https://github.com/fxsjy/jieba") "https://github.com/fxsjy/jieba")
words = list(jieba.cut(text, cut_all=True)) words = list(jieba.cut(text, cut_all=False))
words = [x for x in words if x] words = [x for x in words if x]
return Doc(self.vocab, words=words, spaces=[False]*len(words)) return Doc(self.vocab, words=words, spaces=[False]*len(words))