Skip to content

Commit

Permalink
Merge pull request #183 from gumblex/jieba3k
Browse files Browse the repository at this point in the history
Jieba3k update to v0.33
  • Loading branch information
fxsjy committed Sep 9, 2014
2 parents 6eb43ac + 626b415 commit 8f52419
Show file tree
Hide file tree
Showing 32 changed files with 176,557 additions and 131 deletions.
6 changes: 6 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2014-08-31: version 0.33
1. 支持自定义stop words; by @fukuball
2. 支持自定义idf词典; by @fukuball
3. 修复自定义词典的词性不能正常显示的bug; by @ShuraChow


2014-02-07: version 0.32
1. 新增分词选项:可以关闭新词发现功能;详见:https://github.com/fxsjy/jieba/blob/master/test/test_no_hmm.py#L8
2. 修复posseg子模块的Bug;详见: https://github.com/fxsjy/jieba/issues/111 https://github.com/fxsjy/jieba/issues/132
Expand Down
111 changes: 67 additions & 44 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
jieba
========
"结巴"中文分词:做最好的Python中文分词组件
"结巴"中文分词:做最好的 Python 中文分词组件
"Jieba" (Chinese for "to stutter") Chinese text segmentation: built to be the best Python Chinese word segmentation module.
- _Scroll down for English documentation._


注意!
========
这个branch `jieba3k`是专门用于Python3.x的版本
=======


Feature
Expand Down Expand Up @@ -36,70 +35,70 @@ http://jiebademo.ap01.aws.af.cm/
Python 2.x 下的安装
===================
* 全自动安装:`easy_install jieba` 或者 `pip install jieba`
* 半自动安装:先下载http://pypi.python.org/pypi/jieba/解压后运行python setup.py install
* 手动安装:将jieba目录放置于当前目录或者site-packages目录
* 通过import jieba 来引用 (第一次import时需要构建Trie树,需要几秒时间)
* 半自动安装:先下载 http://pypi.python.org/pypi/jieba/解压后运行 python setup.py install
* 手动安装:将 jieba 目录放置于当前目录或者 site-packages 目录
* 通过 import jieba 来引用


Python 3.x 下的安装
====================
* 目前master分支是只支持Python2.x 的
* 目前 master 分支是只支持 Python2.x 的
* Python3.x 版本的分支也已经基本可用: https://github.com/fxsjy/jieba/tree/jieba3k

git clone https://github.com/fxsjy/jieba.git
git checkout jieba3k
python setup.py install
* 或使用pip3安装: pip3 install jieba3k

结巴分词Java版本

结巴分词 Java 版本
================
作者:piaolingxue
地址:https://github.com/huaban/jieba-analysis

结巴分词C++版本
结巴分词 C++ 版本
================
作者:Aszxqw
地址:https://github.com/aszxqw/cppjieba

结巴分词Node.js版本
结巴分词 Node.js 版本
================
作者:Aszxqw
地址:https://github.com/aszxqw/nodejieba

结巴分词Erlang版本
结巴分词 Erlang 版本
================
作者:falood
https://github.com/falood/exjieba

Algorithm
========
* 基于Trie树结构实现高效的词图扫描,生成句子中汉字所有可能成词情况所构成的有向无环图(DAG)
* 基于 Trie 树结构实现高效的词图扫描,生成句子中汉字所有可能成词情况所构成的有向无环图(DAG)
* 采用了动态规划查找最大概率路径, 找出基于词频的最大切分组合
* 对于未登录词,采用了基于汉字成词能力的HMM模型,使用了Viterbi算法
* 对于未登录词,采用了基于汉字成词能力的 HMM 模型,使用了 Viterbi 算法

功能 1):分词
==========
* `jieba.cut`方法接受两个输入参数: 1) 第一个参数为需要分词的字符串 2)cut_all参数用来控制是否采用全模式
* `jieba.cut_for_search`方法接受一个参数:需要分词的字符串,该方法适合用于搜索引擎构建倒排索引的分词,粒度比较细
* 注意:待分词的字符串可以是gbk字符串、utf-8字符串或者unicode
* `jieba.cut`以及`jieba.cut_for_search`返回的结构都是一个可迭代的generator,可以使用for循环来获得分词后得到的每一个词语(unicode),也可以用list(jieba.cut(...))转化为list
* `jieba.cut` 方法接受两个输入参数: 1) 第一个参数为需要分词的字符串 2)cut_all 参数用来控制是否采用全模式
* `jieba.cut_for_search` 方法接受一个参数:需要分词的字符串,该方法适合用于搜索引擎构建倒排索引的分词,粒度比较细
* 注意:待分词的字符串可以是gbk字符串、utf-8 字符串或者 unicode
* `jieba.cut` 以及 `jieba.cut_for_search` 返回的结构都是一个可迭代的 generator,可以使用 for 循环来获得分词后得到的每一个词语(unicode),也可以用 list(jieba.cut(...))转化为 list

代码示例( 分词 )

#encoding=utf-8
import jieba

seg_list = jieba.cut("我来到北京清华大学",cut_all=True)
print("Full Mode:", "/ ".join(seg_list)) #全模式
print("Full Mode:", "/ ".join(seg_list)) # 全模式

seg_list = jieba.cut("我来到北京清华大学",cut_all=False)
print("Default Mode:", "/ ".join(seg_list)) #精确模式

print("Default Mode:", "/ ".join(seg_list)) # 精确模式

seg_list = jieba.cut("他来到了网易杭研大厦") #默认是精确模式
seg_list = jieba.cut("他来到了网易杭研大厦") # 默认是精确模式
print(", ".join(seg_list))


seg_list = jieba.cut_for_search("小明硕士毕业于中国科学院计算所,后在日本京都大学深造") #搜索引擎模式
seg_list = jieba.cut_for_search("小明硕士毕业于中国科学院计算所,后在日本京都大学深造") # 搜索引擎模式
print(", ".join(seg_list))

Output:
Expand All @@ -115,36 +114,48 @@ Output:
功能 2) :添加自定义词典
================

* 开发者可以指定自己自定义的词典,以便包含jieba词库里没有的词。虽然jieba有新词识别能力,但是自行添加新词可以保证更高的正确率
* 用法: jieba.load_userdict(file_name) # file_name为自定义词典的路径
* 开发者可以指定自己自定义的词典,以便包含 jieba 词库里没有的词。虽然 jieba 有新词识别能力,但是自行添加新词可以保证更高的正确率
* 用法: jieba.load_userdict(file_name) # file_name 为自定义词典的路径
* 词典格式和`dict.txt`一样,一个词占一行;每一行分三部分,一部分为词语,另一部分为词频,最后为词性(可省略),用空格隔开
* 范例:

* 自定义词典:https://github.com/fxsjy/jieba/blob/master/test/userdict.txt

* 用法示例:https://github.com/fxsjy/jieba/blob/master/test/test_userdict.py


* 之前: 李小福 / 是 / 创新 / 办 / 主任 / 也 / 是 / 云 / 计算 / 方面 / 的 / 专家 /

* 加载自定义词库后: 李小福 / 是 / 创新办 / 主任 / 也 / 是 / 云计算 / 方面 / 的 / 专家 /


* "通过用户自定义词典来增强歧义纠错能力" --- https://github.com/fxsjy/jieba/issues/14

功能 3) :关键词提取
================
* jieba.analyse.extract_tags(sentence,topK) #需要先import jieba.analyse
* setence为待提取的文本
* topK为返回几个TF/IDF权重最大的关键词,默认值为20
* jieba.analyse.extract_tags(sentence,topK) #需要先 import jieba.analyse
* setence 为待提取的文本
* topK 为返回几个 TF/IDF 权重最大的关键词,默认值为 20

代码示例 (关键词提取)

https://github.com/fxsjy/jieba/blob/master/test/extract_tags.py

关键词提取所使用逆向文件频率(IDF)文本语料库可以切换成自定义语料库的路径

* 用法: jieba.analyse.set_idf_path(file_name) # file_name为自定义语料库的路径
* 自定义语料库示例:https://github.com/fxsjy/jieba/blob/master/extra_dict/idf.txt.big
* 用法示例:https://github.com/fxsjy/jieba/blob/master/test/extract_tags_idfpath.py

关键词提取所使用停止词(Stop Words)文本语料库可以切换成自定义语料库的路径

* 用法: jieba.analyse.set_stop_words(file_name) # file_name为自定义语料库的路径
* 自定义语料库示例:https://github.com/fxsjy/jieba/blob/master/extra_dict/stop_words.txt
* 用法示例:https://github.com/fxsjy/jieba/blob/master/test/extract_tags_stop_words.py

功能 4) : 词性标注
================
* 标注句子分词后每个词的词性,采用和ictclas兼容的标记法
* 标注句子分词后每个词的词性,采用和 ictclas 兼容的标记法
* 用法示例

>>> import jieba.posseg as pseg
Expand All @@ -156,24 +167,24 @@ Output:
爱 v
北京 ns
天安门 ns

功能 5) : 并行分词
==================
* 原理:将目标文本按行分隔后,把各行文本分配到多个python进程并行分词,然后归并结果,从而获得分词速度的可观提升
* 基于python自带的multiprocessing模块,目前暂不支持windows
* 原理:将目标文本按行分隔后,把各行文本分配到多个 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倍
* 实验结果:在 4 核 3.4GHz Linux 机器上,对金庸全集进行精确分词,获得了 1MB/s 的速度,是单进程版的 3.3 倍


功能 6) : Tokenize:返回词语在原文的起始位置
============================================
* 注意,输入参数只接受unicode
* 注意,输入参数只接受 str
* 默认模式

```python
Expand Down Expand Up @@ -206,9 +217,9 @@ word 有限 start: 6 end:8
word 公司 start: 8 end:10
word 有限公司 start: 6 end:10
```
功能 7) : ChineseAnalyzer for Whoosh搜索引擎


功能 7) : ChineseAnalyzer for Whoosh 搜索引擎
============================================
* 引用: `from jieba.analyse import ChineseAnalyzer `
* 用法示例:https://github.com/fxsjy/jieba/blob/master/test/test_whoosh.py
Expand All @@ -222,19 +233,19 @@ https://github.com/fxsjy/jieba/raw/master/extra_dict/dict.txt.small
2. 支持繁体分词更好的词典文件
https://github.com/fxsjy/jieba/raw/master/extra_dict/dict.txt.big

下载你所需要的词典,然后覆盖jieba/dict.txt 即可或者用`jieba.set_dictionary('data/dict.txt.big')`
下载你所需要的词典,然后覆盖jieba/dict.txt 即可或者用 `jieba.set_dictionary('data/dict.txt.big')`


模块初始化机制的改变:lazy load (从0.28版本开始)
================================================

jieba采用延迟加载,"import jieba"不会立即触发词典的加载,一旦有必要才开始加载词典构建trie。如果你想手工初始jieba,也可以手动初始化。
jieba 采用延迟加载,"import jieba" 不会立即触发词典的加载,一旦有必要才开始加载词典构建trie。如果你想手工初始 jieba,也可以手动初始化。

import jieba
jieba.initialize() # 手动初始化(可选)


在0.28之前的版本是不能指定主词典的路径的,有了延迟加载机制后,你可以改变主词典的路径:
在 0.28 之前的版本是不能指定主词典的路径的,有了延迟加载机制后,你可以改变主词典的路径:


jieba.set_dictionary('data/dict.txt.big')
Expand Down Expand Up @@ -335,9 +346,9 @@ Function 2): Add a custom dictionary
李小福 2
创新办 3

之前: 李小福 / 是 / 创新 / 办 / 主任 / 也 / 是 / 云 / 计算 / 方面 / 的 / 专家 /
[Before]: 李小福 / 是 / 创新 / 办 / 主任 / 也 / 是 / 云 / 计算 / 方面 / 的 / 专家 /

加载自定义词库后: 李小福 / 是 / 创新办 / 主任 / 也 / 是 / 云计算 / 方面 / 的 / 专家 /
[After]: 李小福 / 是 / 创新办 / 主任 / 也 / 是 / 云计算 / 方面 / 的 / 专家 /

Function 3): Keyword Extraction
================
Expand All @@ -349,6 +360,18 @@ Code sample (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

* Usage: `jieba.analyse.set_idf_path(file_name) # file_name is a custom corpus path`
* Custom Corpus Sample:https://github.com/fxsjy/jieba/blob/master/extra_dict/idf.txt.big
* Sample Code:https://github.com/fxsjy/jieba/blob/master/test/extract_tags_idfpath.py

Developers can specify their own custom stop words corpus in jieba keyword extraction

* Usage: `jieba.analyse.set_stop_words(file_name) # file_name is a custom corpus path`
* Custom Corpus Sample:https://github.com/fxsjy/jieba/blob/master/extra_dict/stop_words.txt
* Sample Code:https://github.com/fxsjy/jieba/blob/master/test/extract_tags_stop_words.py

Using Other Dictionaries
========
It is possible to supply Jieba with your own custom dictionary, and there are also two dictionaries readily available for download:
Expand Down
Loading

0 comments on commit 8f52419

Please sign in to comment.