mirror of
https://github.com/fxsjy/jieba.git
synced 2025-07-10 00:01:33 +08:00
version update to 0.34
This commit is contained in:
parent
4a93f21918
commit
82bfffb6ed
@ -1,3 +1,7 @@
|
|||||||
|
2014-10-20: version 0.34
|
||||||
|
1. 提升性能,词典结构由Trie改为Prefix Set,内存占用减少2/3, 详见:https://github.com/fxsjy/jieba/pull/187;by @gumblex
|
||||||
|
2. 修复关键词提取功能的性能问题
|
||||||
|
|
||||||
2014-08-31: version 0.33
|
2014-08-31: version 0.33
|
||||||
1. 支持自定义stop words; by @fukuball
|
1. 支持自定义stop words; by @fukuball
|
||||||
2. 支持自定义idf词典; by @fukuball
|
2. 支持自定义idf词典; by @fukuball
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
__version__ = '0.32'
|
__version__ = '0.34'
|
||||||
__license__ = 'MIT'
|
__license__ = 'MIT'
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
2
setup.py
2
setup.py
@ -1,6 +1,6 @@
|
|||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
setup(name='jieba',
|
setup(name='jieba',
|
||||||
version='0.33',
|
version='0.34',
|
||||||
description='Chinese Words Segementation Utilities',
|
description='Chinese Words Segementation Utilities',
|
||||||
author='Sun, Junyi',
|
author='Sun, Junyi',
|
||||||
author_email='ccnusjy@gmail.com',
|
author_email='ccnusjy@gmail.com',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user