和拉丁语系不同,亚洲语言是不用空格分开每个有意义的词的。而当我们进行自然语言处理的时候,大部分情况下,词汇是我们对句子和文章理解的基础,因此需要一个工具去把完整的文本中分解成粒度更细的词。 jieba就是这样一个非常好用的中文工具,是以分词起家的,但是功能比分词要强大很多。
jieba.cut 以及 jieba.cut_for_search 返回的结构都是一个可迭代的 generator,可以使用 for 循环来获得分词后得到的每一个词语(unicode)
jieba.cut 方法接受三个输入参数:
jieba.cut_for_search 方法接受两个参数
In [28]:
# encoding=utf-8
import jieba
cut_list = jieba.cut("我在学习自然语言处理计算机视觉",cut_all=True) #全模式
print(cut_list)
print("Full mode" + '/'.join(cut_list))
cut_list_1 = jieba.cut("我在学习自然语言处理,计算机视觉",cut_all=False) #精确模式,默认是精确模式
print("Default mode" + '/'.join(cut_list_1))
cut_list_2 = jieba.cut_for_search("小明硕士毕业于中国科学院计算所,后在哈佛大学深造") #搜索引擎模式
print('/'.join(cut_list_2))
cut_list_2 = jieba.cut_for_search("科比巅峰时到底能不能虐詹姆斯,这不是问题") #搜索引擎模式
print('/'.join(cut_list_2))
jieba.lcut以及jieba.lcut_for_search直接返回 list
In [29]:
result_lcut = jieba.lcut("小明硕士毕业于中国科学院计算所,后在哈佛大学深造")
print(result_lcut)
print(" ".join(result_lcut))
print(" ".join(jieba.lcut_for_search("小明硕士毕业于中国科学院计算所,后在哈佛大学深造")))
In [30]:
print('/'.join(jieba.cut('如果放到旧字典中将出错。', HMM=False)))
In [31]:
jieba.suggest_freq(('中', '将'), True)
Out[31]:
In [32]:
print('/'.join(jieba.cut('如果放到旧字典中将出错。', HMM=False)))
原理:将目标文本按行分隔后,把各行文本分配到多个 Python 进程并行分词,然后归并结果,从而获得分词速度的可观提升 基于 python 自带的 multiprocessing 模块,(是否支持windows待验证)
用法: jieba.enable_parallel(4) # 开启并行分词模式,参数为并行进程数 jieba.disable_parallel() # 关闭并行分词模式
实验结果:在 4 核 3.4GHz Linux 机器上,对金庸全集进行精确分词,获得了 1MB/s 的速度,是单进程版的 3.3 倍。
注意:并行分词仅支持默认分词器 jieba.dt 和 jieba.posseg.dt
In [53]:
import sys
import time
import jieba
jieba.enable_parallel()
content = open(u'人工智能火了-人类有些尴尬了.txt',"r").read()
t1 = time.time()
words = "/ ".join(jieba.cut(content))
t2 = time.time()
tm_cost = t2-t1
print('并行分词速度为 %s bytes/second' % (len(content)/tm_cost))
jieba.disable_parallel()
content = open(u'人工智能火了-人类有些尴尬了.txt',"r").read()
t1 = time.time()
words = "/ ".join(jieba.cut(content))
t2 = time.time()
tm_cost = t2-t1
print('非并行分词速度为 %s bytes/second' % (len(content)/tm_cost))
In [46]:
import jieba.analyse as analyse
lines = open('人工智能火了-人类有些尴尬了.txt').read()
print(type(lines))
seg_list = analyse.extract_tags(lines,topK=15,withWeight=False,allowPOS=())
#print(seg_list)
text = " ".join(seg_list)
print(text)
In [50]:
import jieba.analyse as analyse
lines = open('人工智能火了-人类有些尴尬了.txt').read()
print(" ".join(analyse.textrank(lines, topK=20, withWeight=False, allowPOS=('ns', 'n', 'vn', 'v'))))
print("---------------------我是分割线----------------")
print(" ".join(analyse.textrank(lines, topK=20, withWeight=False, allowPOS=('ns', 'n'))))
In [52]:
import jieba.posseg as pseg
words = pseg.cut("我爱人工智能")
print(words)
for word,flag in words:
print("%s %s" % (word,flag))
In [57]:
print("这是默认模式的tokenize")
result = jieba.tokenize(u'自然语言处理非常有用')
for tk in result:
print("%s\t\t start: %d \t\t end:%d" % (tk[0],tk[1],tk[2]))
print(u"\n-----------我是神奇的分割线------------\n")
print("这是搜索模式的tokenize")
result = jieba.tokenize(u'自然语言处理非常有用', mode='search')
for tk in result:
print("%s\t\t start: %d \t\t end:%d" % (tk[0],tk[1],tk[2]))
In [ ]:
命令行分词
使用示例:python -m jieba news.txt > cut_result.txt
命令行选项(翻译):
使用: python -m jieba [options] filename
结巴命令行界面。
固定参数:
filename 输入文件
可选参数:
-h, --help 显示此帮助信息并退出
-d [DELIM], --delimiter [DELIM]
使用 DELIM 分隔词语,而不是用默认的' / '。
若不指定 DELIM,则使用一个空格分隔。
-p [DELIM], --pos [DELIM]
启用词性标注;如果指定 DELIM,词语和词性之间
用它分隔,否则用 _ 分隔
-D DICT, --dict DICT 使用 DICT 代替默认词典
-u USER_DICT, --user-dict USER_DICT
使用 USER_DICT 作为附加词典,与默认词典或自定义词典配合使用
-a, --cut-all 全模式分词(不支持词性标注)
-n, --no-hmm 不使用隐含马尔可夫模型
-q, --quiet 不输出载入信息到 STDERR
-V, --version 显示版本信息并退出
如果没有指定文件名,则使用标准输入。
--help 选项输出:
$> python -m jieba --help
Jieba command line interface.
positional arguments:
filename input file
optional arguments:
-h, --help show this help message and exit
-d [DELIM], --delimiter [DELIM]
use DELIM instead of ' / ' for word delimiter; or a
space if it is used without DELIM
-p [DELIM], --pos [DELIM]
enable POS tagging; if DELIM is specified, use DELIM
instead of '_' for POS delimiter
-D DICT, --dict DICT use DICT as dictionary
-u USER_DICT, --user-dict USER_DICT
use USER_DICT together with the default dictionary or
DICT (if specified)
-a, --cut-all full pattern cutting (ignored with POS tagging)
-n, --no-hmm don't use the Hidden Markov Model
-q, --quiet don't print loading messages to stderr
-V, --version show program's version number and exit
If no filename specified, use STDIN instead.