jieba分词的分词模式比较

sentence = "我来自中国人民大学"
# 默认精确模式
words = jieba.cut(sentence)
print("精确模式:  %s" % " ".join(words))
# 全模式
words = jieba.cut(sentence, cut_all=True)
print("全模式:  %s" % " ".join(words))
# 新词模式
words = jieba.cut(sentence, use_paddle=True)
print("paddle模式:  %s" % " ".join(words))
# 搜索模式
words = jieba.cut_for_search(sentence)
print("搜索模式:  %s" % " ".join(words))
---------------------------------------------------
精确模式:  我 来自 中国人民大学
全模式:  我 来自 中国 中国人民大学 国人 人民 人民大学 大学
paddle模式:  我 来自 中国人民大学
搜索模式:  我 来自 中国 国人 人民 大学 中国人民大学

posted @ 2022-04-19 10:58  kopok  阅读(106)  评论(0编辑  收藏  举报