This commit is contained in:
fxsjy 2014-03-02 17:52:52 +08:00
commit 2682e887b8
3 changed files with 8 additions and 3 deletions

View File

@ -54,6 +54,11 @@ Python 3.x 下的安装
作者Aszxqw
地址https://github.com/aszxqw/cppjieba
结巴分词Node.js版本
================
作者Aszxqw
地址https://github.com/aszxqw/nodejieba
Algorithm
========
* 基于Trie树结构实现高效的词图扫描生成句子中汉字所有可能成词情况所构成的有向无环图DAG)

View File

@ -1,5 +1,5 @@
from __future__ import with_statement
__version__ = '0.31'
__version__ = '0.32'
__license__ = 'MIT'
import re

4
jieba/analyse/__init__.py Normal file → Executable file
View File

@ -1,9 +1,9 @@
import jieba
import os
try:
from analyzer import ChineseAnalyzer
from analyzer import ChineseAnalyzer
except ImportError:
pass
pass
_curpath=os.path.normpath( os.path.join( os.getcwd(), os.path.dirname(__file__) ) )
f_name = os.path.join(_curpath,"idf.txt")