Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add jieba #778

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
9559dff
add jieba
JesseyXujin Nov 19, 2019
48275cc
add readme and test.py
JesseyXujin Nov 19, 2019
6310972
fix bug
JesseyXujin Nov 19, 2019
722c98a
update for easy setup
xyzhou-puck Nov 19, 2019
8bdc465
Merge pull request #1 from xyzhou-puck/paddle_demo
JesseyXujin Nov 19, 2019
66b7f87
update path
JesseyXujin Nov 20, 2019
cef556d
add paddle pos seg
JesseyXujin Nov 21, 2019
0174b05
change readme
JesseyXujin Nov 21, 2019
28764cb
change readme
JesseyXujin Nov 21, 2019
8b668a7
modify readme
JesseyXujin Nov 21, 2019
9e0c9ef
modify posseg
JesseyXujin Nov 25, 2019
e769671
modify readme
JesseyXujin Nov 25, 2019
4994aa8
fix bug
JesseyXujin Nov 25, 2019
4c1c256
fix bug
JesseyXujin Nov 25, 2019
87cd3b6
fix word_lens problem
JesseyXujin Nov 25, 2019
78064dc
modify cpk
JesseyXujin Nov 26, 2019
72c7746
fix bugs
JesseyXujin Nov 26, 2019
b238975
fix unicode problem
JesseyXujin Nov 26, 2019
c226f67
add try catch import
JesseyXujin Nov 26, 2019
a6bd564
update install check
Dec 5, 2019
166812f
delete symbols modification
Dec 5, 2019
6d7cfa7
modify paddle test pipy
Dec 10, 2019
6d4510a
add init.py in posseg
Dec 10, 2019
6519433
set posseg paddle default False
Dec 10, 2019
c49cbeb
change model_baseline
Dec 10, 2019
ad9a2b7
support windows int64
Dec 11, 2019
2841841
modify paddle install command
Dec 11, 2019
64df8f2
modify readme
Dec 11, 2019
a49ff1a
modify warning
Dec 12, 2019
de53d3a
remove conf
Dec 12, 2019
cb2c8fb
remove test pypi, use formal pypi
Dec 23, 2019
a7aa781
modify details for support OOV
JesseyXujin Dec 23, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
modify readme
root committed Dec 11, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 64df8f254bb25aec874005b24c9afc0ea2cce501
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ jieba
import jieba

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

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