赞
踩
在使用jieba分词时经常会发现一些未登录词,因此增加领域词表就变得很重要,下面提供增加几种途径:
1、领域权威词汇字典
2、搜狗输入法领域词库、百度输入法领域词库
3、jieba分词提供的其他词典:点我查看jieba分词提供的其他字典,点我查看jieba分词词性标记含义
然后这三种类型的用户此表取个并集即可,在Python中使用集合操作即可,例如,三种字典均为列表(listt),如下操作即可去除重复:
目前这个方面的确还比较弱。
通过在自定义词典里提高“江大桥”的词频可以做到,但是设置多少还没有公式,词频越高则成词概率越大,不宜过大。
我是这样设置的:
==user.dict==
江大桥 20000
===test1.py======
#encoding=utf-8
import sys
sys.path.append("../")
import jieba
jieba.load_userdict("user.dict")
print ", ".join(jieba.cut("江州市长江大桥参加了长江大桥的通车仪式"))
==结果===
江州, 市长, 江大桥, 参加, 了, 长江大桥, 的, 通车, 仪式
默认词库在这里:https://github.com/fxsjy/jieba/blob/master/jieba/dict.txt?raw=true
jieba为自然语言语言中常用工具包,jieba具有对分词的词性进行标注的功能,词性类别如下:
Ag | 形语素 | 形容词性语素。形容词代码为 a,语素代码g前面置以A。 |
a | 形容词 | 取英语形容词 adjective的第1个字母。 |
ad | 副形词 | 直接作状语的形容词。形容词代码 a和副词代码d并在一起。 |
an | 名形词 | 具有名词功能的形容词。形容词代码 a和名词代码n并在一起。 |
b | 区别词 | 取汉字“别”的声母。 |
c | 连词 | 取英语连词 conjunction的第1个字母。 |
dg
| 副语素 | 副词性语素。副词代码为 d,语素代码g前面置以D。 |
d | 副词 | 取 adverb的第2个字母,因其第1个字母已用于形容词。 |
e | 叹词 | 取英语叹词 exclamation的第1个字母。 |
f | 方位词 | 取汉字“方” |
g | 语素 | 绝大多数语素都能作为合成词的“词根”,取汉字“根”的声母。 |
h | 前接成分 | 取英语 head的第1个字母。 |
i | 成语 | 取英语成语 idiom的第1个字母。 |
j | 简称略语 | 取汉字“简”的声母。 |
k | 后接成分 | |
l | 习用语 | 习用语尚未成为成语,有点“临时性”,取“临”的声母。 |
m | 数词 | 取英语 numeral的第3个字母,n,u已有他用。 |
Ng | 名语素 | 名词性语素。名词代码为 n,语素代码g前面置以N。 |
n | 名词 | 取英语名词 noun的第1个字母。 |
nr | 人名 | 名词代码 n和“人(ren)”的声母并在一起。 |
ns | 地名 | 名词代码 n和处所词代码s并在一起。 |
nt | 机构团体 | “团”的声母为 t,名词代码n和t并在一起。 |
nz | 其他专名 | “专”的声母的第 1个字母为z,名词代码n和z并在一起。 |
o | 拟声词 | 取英语拟声词 onomatopoeia的第1个字母。 |
p | 介词 | 取英语介词 prepositional的第1个字母。 |
q | 量词 | 取英语 quantity的第1个字母。 |
r | 代词 | 取英语代词 pronoun的第2个字母,因p已用于介词。 |
s | 处所词 | 取英语 space的第1个字母。 |
tg | 时语素 | 时间词性语素。时间词代码为 t,在语素的代码g前面置以T。 |
t | 时间词 | 取英语 time的第1个字母。 |
u | 助词 | 取英语助词 auxiliary |
vg | 动语素 | 动词性语素。动词代码为 v。在语素的代码g前面置以V。 |
v | 动词 | 取英语动词 verb的第一个字母。 |
vd | 副动词 | 直接作状语的动词。动词和副词的代码并在一起。 |
vn | 名动词 | 指具有名词功能的动词。动词和名词的代码并在一起。 |
w | 标点符号 | |
x | 非语素字 | 非语素字只是一个符号,字母 x通常用于代表未知数、符号。 |
y | 语气词 | 取汉字“语”的声母。 |
z | 状态词 | 取汉字“状”的声母的前一个字母。 |
un | 未知词 | 不可识别词及用户自定义词组。取英文Unkonwn首两个字母。(非北大标准,CSW分词中定义) |
“结巴”中文分词:做最好的 Python 中文分词组件
"Jieba" (Chinese for "to stutter") Chinese text segmentation: built to be the best Python Chinese word segmentation module.
支持三种分词模式:
支持繁体分词
支持自定义词典
MIT 授权协议
http://jiebademo.ap01.aws.af.cm/
(Powered by Appfog)
网站代码:https://github.com/fxsjy/jiebademo
代码对 Python 2/3 均兼容
easy_install jieba
或者 pip install jieba
/ pip3 install jieba
python setup.py install
import jieba
来引用jieba.cut
方法接受三个输入参数: 需要分词的字符串;cut_all 参数用来控制是否采用全模式;HMM 参数用来控制是否使用 HMM 模型jieba.cut_for_search
方法接受两个参数:需要分词的字符串;是否使用 HMM 模型。该方法适合用于搜索引擎构建倒排索引的分词,粒度比较细jieba.cut
以及 jieba.cut_for_search
返回的结构都是一个可迭代的 generator,可以使用 for 循环来获得分词后得到的每一个词语(unicode),或者用jieba.lcut
以及 jieba.lcut_for_search
直接返回 listjieba.Tokenizer(dictionary=DEFAULT_DICT)
新建自定义分词器,可用于同时使用不同词典。jieba.dt
为默认分词器,所有全局分词相关函数都是该分词器的映射。代码示例
# encoding=utf-8
import jieba
seg_list = jieba.cut("我来到北京清华大学", cut_all=True)
print("Full Mode: " + "/ ".join(seg_list)) # 全模式
seg_list = jieba.cut("我来到北京清华大学", cut_all=False)
print("Default Mode: " + "/ ".join(seg_list)) # 精确模式
seg_list = jieba.cut("他来到了网易杭研大厦") # 默认是精确模式
print(", ".join(seg_list))
seg_list = jieba.cut_for_search("小明硕士毕业于中国科学院计算所,后在日本京都大学深造") # 搜索引擎模式
print(", ".join(seg_list))
输出:
- 【全模式】: 我/ 来到/ 北京/ 清华/ 清华大学/ 华大/ 大学
-
- 【精确模式】: 我/ 来到/ 北京/ 清华大学
-
- 【新词识别】:他, 来到, 了, 网易, 杭研, 大厦 (此处,“杭研”并没有在词典中,但是也被Viterbi算法识别出来了)
-
- 【搜索引擎模式】: 小明, 硕士, 毕业, 于, 中国, 科学, 学院, 科学院, 中国科学院, 计算, 计算所, 后, 在, 日本, 京都, 大学, 日本京都大学, 深造
dict.txt
一样,一个词占一行;每一行分三部分:词语、词频(可省略)、词性(可省略),用空格隔开,顺序不可颠倒。file_name
若为路径或二进制方式打开的文件,则文件必须为 UTF-8 编码。例如:
- 创新办 3 i
- 云计算 5
- 凱特琳 nz
- 台中
更改分词器(默认为 jieba.dt
)的 tmp_dir
和 cache_file
属性,可分别指定缓存文件所在的文件夹及其文件名,用于受限的文件系统。
范例:
自定义词典:https://github.com/fxsjy/jieba/blob/master/test/userdict.txt
用法示例:https://github.com/fxsjy/jieba/blob/master/test/test_userdict.py
之前: 李小福 / 是 / 创新 / 办 / 主任 / 也 / 是 / 云 / 计算 / 方面 / 的 / 专家 /
加载自定义词库后: 李小福 / 是 / 创新办 / 主任 / 也 / 是 / 云计算 / 方面 / 的 / 专家 /
使用 add_word(word, freq=None, tag=None)
和 del_word(word)
可在程序中动态修改词典。
使用 suggest_freq(segment, tune=True)
可调节单个词语的词频,使其能(或不能)被分出来。
注意:自动计算的词频在使用 HMM 新词发现功能时可能无效。
代码示例:
>>> print('/'.join(jieba.cut('如果放到post中将出错。', HMM=False)))
如果/放到/post/中将/出错/。
>>> jieba.suggest_freq(('中', '将'), True)
494
>>> print('/'.join(jieba.cut('如果放到post中将出错。', HMM=False)))
如果/放到/post/中/将/出错/。
>>> print('/'.join(jieba.cut('「台中」正确应该不会被切开', HMM=False)))
「/台/中/」/正确/应该/不会/被/切开
>>> jieba.suggest_freq('台中', True)
69
>>> print('/'.join(jieba.cut('「台中」正确应该不会被切开', HMM=False)))
「/台中/」/正确/应该/不会/被/切开
import jieba.analyse
代码示例 (关键词提取)
https://github.com/fxsjy/jieba/blob/master/test/extract_tags.py
关键词提取所使用逆向文件频率(IDF)文本语料库可以切换成自定义语料库的路径
关键词提取所使用停止词(Stop Words)文本语料库可以切换成自定义语料库的路径
关键词一并返回关键词权重值示例
算法论文: TextRank: Bringing Order into Texts
jieba.posseg.POSTokenizer(tokenizer=None)
新建自定义分词器,tokenizer
参数可指定内部使用的 jieba.Tokenizer
分词器。jieba.posseg.dt
为默认词性标注分词器。>>> import jieba.posseg as pseg
>>> words = pseg.cut("我爱北京天安门")
>>> for word, flag in words:
... print('%s %s' % (word, flag))
...
我 r
爱 v
北京 ns
天安门 ns
原理:将目标文本按行分隔后,把各行文本分配到多个 Python 进程并行分词,然后归并结果,从而获得分词速度的可观提升
基于 python 自带的 multiprocessing 模块,目前暂不支持 Windows
用法:
jieba.enable_parallel(4)
# 开启并行分词模式,参数为并行进程数jieba.disable_parallel()
# 关闭并行分词模式例子:https://github.com/fxsjy/jieba/blob/master/test/parallel/test_file.py
实验结果:在 4 核 3.4GHz Linux 机器上,对金庸全集进行精确分词,获得了 1MB/s 的速度,是单进程版的 3.3 倍。
注意:并行分词仅支持默认分词器 jieba.dt
和 jieba.posseg.dt
。
result = jieba.tokenize(u'永和服装饰品有限公司')
for tk in result:
print("word %s\t\t start: %d \t\t end:%d" % (tk[0],tk[1],tk[2]))
- word 永和 start: 0 end:2
- word 服装 start: 2 end:4
- word 饰品 start: 4 end:6
- word 有限公司 start: 6 end:10
-
result = jieba.tokenize(u'永和服装饰品有限公司', mode='search')
for tk in result:
print("word %s\t\t start: %d \t\t end:%d" % (tk[0],tk[1],tk[2]))
- word 永和 start: 0 end:2
- word 服装 start: 2 end:4
- word 饰品 start: 4 end:6
- word 有限 start: 6 end:8
- word 公司 start: 8 end:10
- word 有限公司 start: 6 end:10
from jieba.analyse import ChineseAnalyzer
使用示例: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.
jieba 采用延迟加载,import jieba
和 jieba.Tokenizer()
不会立即触发词典的加载,一旦有必要才开始加载词典构建前缀字典。如果你想手工初始 jieba,也可以手动初始化。
- import jieba
- jieba.initialize() # 手动初始化(可选)
在 0.28 之前的版本是不能指定主词典的路径的,有了延迟加载机制后,你可以改变主词典的路径:
jieba.set_dictionary('data/dict.txt.big')
例子: https://github.com/fxsjy/jieba/blob/master/test/test_change_dictpath.py
占用内存较小的词典文件https://github.com/fxsjy/jieba/raw/master/extra_dict/dict.txt.small
支持繁体分词更好的词典文件https://github.com/fxsjy/jieba/raw/master/extra_dict/dict.txt.big
下载你所需要的词典,然后覆盖 jieba/dict.txt 即可;或者用 jieba.set_dictionary('data/dict.txt.big')
作者:piaolingxue地址:https://github.com/huaban/jieba-analysis
作者:yanyiwu地址:https://github.com/yanyiwu/cppjieba
作者:yanyiwu地址:https://github.com/yanyiwu/nodejieba
作者:falood地址:https://github.com/falood/exjieba
作者:qinwf地址:https://github.com/qinwf/jiebaR
作者:yanyiwu地址:https://github.com/yanyiwu/iosjieba
作者:fukuball地址:https://github.com/fukuball/jieba-php
作者:anderscui地址:https://github.com/anderscui/jieba.NET/
详见: https://github.com/fxsjy/jieba/issues/7
P(台中) < P(台)×P(中),“台中”词频不够导致其成词概率较低
解决方法:强制调高词频
jieba.add_word('台中')
或者 jieba.suggest_freq('台中', True)
解决方法:强制调低词频
jieba.suggest_freq(('今天', '天气'), True)
或者直接删除该词 jieba.del_word('今天天气')
解决方法:关闭新词发现
jieba.cut('丰田太省了', HMM=False)
jieba.cut('我们中出了一个叛徒', HMM=False)
更多问题请点击:https://github.com/fxsjy/jieba/issues?sort=updated&state=closed
https://github.com/fxsjy/jieba/blob/master/Changelog
"Jieba" (Chinese for "to stutter") Chinese text segmentation: built to be the best Python Chinese word segmentation module.
http://jiebademo.ap01.aws.af.cm/
(Powered by Appfog)
easy_install jieba
or pip install jieba
python setup.py install
after extracting.jieba
directory in the current directory or python site-packages
directory.import jieba
.jieba.cut
function accepts three input parameters: the first parameter is the string to be cut; the second parameter is cut_all
, controlling the cut mode; the third parameter is to control whether to use the Hidden Markov Model.jieba.cut_for_search
accepts two parameter: the string to be cut; whether to use the Hidden Markov Model. This will cut the sentence into short words suitable for search engines.jieba.cut
and jieba.cut_for_search
returns an generator, from which you can use a for
loop to get the segmentation result (in unicode).jieba.lcut
and jieba.lcut_for_search
returns a list.jieba.Tokenizer(dictionary=DEFAULT_DICT)
creates a new customized Tokenizer, which enables you to use different dictionaries at the same time. jieba.dt
is the default Tokenizer, to which almost all global functions are mapped.Code example: segmentation
#encoding=utf-8
import jieba
seg_list = jieba.cut("我来到北京清华大学", cut_all=True)
print("Full Mode: " + "/ ".join(seg_list)) # 全模式
seg_list = jieba.cut("我来到北京清华大学", cut_all=False)
print("Default Mode: " + "/ ".join(seg_list)) # 默认模式
seg_list = jieba.cut("他来到了网易杭研大厦")
print(", ".join(seg_list))
seg_list = jieba.cut_for_search("小明硕士毕业于中国科学院计算所,后在日本京都大学深造") # 搜索引擎模式
print(", ".join(seg_list))
Output:
- [Full Mode]: 我/ 来到/ 北京/ 清华/ 清华大学/ 华大/ 大学
-
- [Accurate Mode]: 我/ 来到/ 北京/ 清华大学
-
- [Unknown Words Recognize] 他, 来到, 了, 网易, 杭研, 大厦 (In this case, "杭研" is not in the dictionary, but is identified by the Viterbi algorithm)
-
- [Search Engine Mode]: 小明, 硕士, 毕业, 于, 中国, 科学, 学院, 科学院, 中国科学院, 计算, 计算所, 后, 在, 日本, 京都, 大学, 日本京都大学, 深造
jieba.load_userdict(file_name)
# file_name is a file-like object or the path of the custom dictionarydict.txt
: one word per line; each line is divided into three parts separated by a space: word, word frequency, POS tag. If file_name
is a path or a file opened in binary mode, the dictionary must be UTF-8 encoded.For example:
- 创新办 3 i
- 云计算 5
- 凱特琳 nz
- 台中
Change a Tokenizer's tmp_dir
and cache_file
to specify the path of the cache file, for using on a restricted file system.
Example:
- 云计算 5
- 李小福 2
- 创新办 3
-
- [Before]: 李小福 / 是 / 创新 / 办 / 主任 / 也 / 是 / 云 / 计算 / 方面 / 的 / 专家 /
-
- [After]: 李小福 / 是 / 创新办 / 主任 / 也 / 是 / 云计算 / 方面 / 的 / 专家 /
Use add_word(word, freq=None, tag=None)
and del_word(word)
to modify the dictionary dynamically in programs.
Use suggest_freq(segment, tune=True)
to adjust the frequency of a single word so that it can (or cannot) be segmented.
Note that HMM may affect the final result.
Example:
>>> print('/'.join(jieba.cut('如果放到post中将出错。', HMM=False)))
如果/放到/post/中将/出错/。
>>> jieba.suggest_freq(('中', '将'), True)
494
>>> print('/'.join(jieba.cut('如果放到post中将出错。', HMM=False)))
如果/放到/post/中/将/出错/。
>>> print('/'.join(jieba.cut('「台中」正确应该不会被切开', HMM=False)))
「/台/中/」/正确/应该/不会/被/切开
>>> jieba.suggest_freq('台中', True)
69
>>> print('/'.join(jieba.cut('「台中」正确应该不会被切开', HMM=False)))
「/台中/」/正确/应该/不会/被/切开
import jieba.analyse
jieba.analyse.extract_tags(sentence, topK=20, withWeight=False, allowPOS=())
sentence
: the text to be extractedtopK
: return how many keywords with the highest TF/IDF weights. The default value is 20withWeight
: whether return TF/IDF weights with the keywords. The default value is FalseallowPOS
: filter words with which POSs are included. Empty for no filtering.jieba.analyse.TFIDF(idf_path=None)
creates a new TFIDF instance, idf_path
specifies IDF file path.Example (keyword extraction)
https://github.com/fxsjy/jieba/blob/master/test/extract_tags.py
Developers can specify their own custom IDF corpus in jieba keyword extraction
jieba.analyse.set_idf_path(file_name) # file_name is the path for the custom corpus
Developers can specify their own custom stop words corpus in jieba keyword extraction
jieba.analyse.set_stop_words(file_name) # file_name is the path for the custom corpus
There's also a TextRank implementation available.
Use: jieba.analyse.textrank(sentence, topK=20, withWeight=False, allowPOS=('ns', 'n', 'vn', 'v'))
Note that it filters POS by default.
jieba.analyse.TextRank()
creates a new TextRank instance.
jieba.posseg.POSTokenizer(tokenizer=None)
creates a new customized Tokenizer. tokenizer
specifies the jieba.Tokenizer to internally use. jieba.posseg.dt
is the default POSTokenizer.>>> import jieba.posseg as pseg
>>> words = pseg.cut("我爱北京天安门")
>>> for w in words:
... print('%s %s' % (w.word, w.flag))
...
我 r
爱 v
北京 ns
天安门 ns
Principle: Split target text by line, assign the lines into multiple Python processes, and then merge the results, which is considerably faster.
Based on the multiprocessing module of Python.
Usage:
jieba.enable_parallel(4)
# Enable parallel processing. The parameter is the number of processes.jieba.disable_parallel()
# Disable parallel processing.Example:https://github.com/fxsjy/jieba/blob/master/test/parallel/test_file.py
Result: On a four-core 3.4GHz Linux machine, do accurate word segmentation on Complete Works of Jin Yong, and the speed reaches 1MB/s, which is 3.3 times faster than the single-process version.
Note that parallel processing supports only default tokenizers, jieba.dt
and jieba.posseg.dt
.
result = jieba.tokenize(u'永和服装饰品有限公司')
for tk in result:
print("word %s\t\t start: %d \t\t end:%d" % (tk[0],tk[1],tk[2]))
- word 永和 start: 0 end:2
- word 服装 start: 2 end:4
- word 饰品 start: 4 end:6
- word 有限公司 start: 6 end:10
-
result = jieba.tokenize(u'永和服装饰品有限公司',mode='search')
for tk in result:
print("word %s\t\t start: %d \t\t end:%d" % (tk[0],tk[1],tk[2]))
- word 永和 start: 0 end:2
- word 服装 start: 2 end:4
- word 饰品 start: 4 end:6
- word 有限 start: 6 end:8
- word 公司 start: 8 end:10
- word 有限公司 start: 6 end:10
from jieba.analyse import ChineseAnalyzer
- $> 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.
By default, Jieba don't build the prefix dictionary unless it's necessary. This takes 1-3 seconds, after which it is not initialized again. If you want to initialize Jieba manually, you can call:
- import jieba
- jieba.initialize() # (optional)
You can also specify the dictionary (not supported before version 0.28) :
jieba.set_dictionary('data/dict.txt.big')
It is possible to use your own dictionary with Jieba, and there are also two dictionaries ready for download:
A smaller dictionary for a smaller memory footprint:https://github.com/fxsjy/jieba/raw/master/extra_dict/dict.txt.small
There is also a bigger dictionary that has better support for traditional Chinese (繁體):https://github.com/fxsjy/jieba/raw/master/extra_dict/dict.txt.big
By default, an in-between dictionary is used, called dict.txt
and included in the distribution.
In either case, download the file you want, and then call jieba.set_dictionary('data/dict.txt.big')
or just replace the existing dict.txt
.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。