├── .gitattributes ├── .gitignore ├── Changelog ├── LICENSE ├── MANIFEST.in ├── README.md ├── extra_dict ├── dict.txt.big ├── dict.txt.small ├── idf.txt.big └── stop_words.txt ├── jieba ├── __init__.py ├── __main__.py ├── _compat.py ├── analyse │ ├── __init__.py │ ├── analyzer.py │ ├── idf.txt │ ├── textrank.py │ └── tfidf.py ├── dict.txt ├── finalseg │ ├── __init__.py │ ├── prob_emit.p │ ├── prob_emit.py │ ├── prob_start.p │ ├── prob_start.py │ ├── prob_trans.p │ └── prob_trans.py ├── lac_small │ ├── __init__.py │ ├── creator.py │ ├── model_baseline │ │ ├── crfw │ │ ├── fc_0.b_0 │ │ ├── fc_0.w_0 │ │ ├── fc_1.b_0 │ │ ├── fc_1.w_0 │ │ ├── fc_2.b_0 │ │ ├── fc_2.w_0 │ │ ├── fc_3.b_0 │ │ ├── fc_3.w_0 │ │ ├── fc_4.b_0 │ │ ├── fc_4.w_0 │ │ ├── gru_0.b_0 │ │ ├── gru_0.w_0 │ │ ├── gru_1.b_0 │ │ ├── gru_1.w_0 │ │ ├── gru_2.b_0 │ │ ├── gru_2.w_0 │ │ ├── gru_3.b_0 │ │ ├── gru_3.w_0 │ │ └── word_emb │ ├── nets.py │ ├── predict.py │ ├── reader_small.py │ ├── tag.dic │ ├── utils.py │ └── word.dic └── posseg │ ├── __init__.py │ ├── char_state_tab.p │ ├── char_state_tab.py │ ├── prob_emit.p │ ├── prob_emit.py │ ├── prob_start.p │ ├── prob_start.py │ ├── prob_trans.p │ ├── prob_trans.py │ └── viterbi.py ├── setup.py └── test ├── demo.py ├── extract_tags.py ├── extract_tags_idfpath.py ├── extract_tags_stop_words.py ├── extract_tags_with_weight.py ├── extract_topic.py ├── foobar.txt ├── jieba_test.py ├── jiebacmd.py ├── lyric.txt ├── parallel ├── extract_tags.py ├── test.py ├── test2.py ├── test_cut_for_search.py ├── test_disable_hmm.py ├── test_file.py ├── test_pos.py └── test_pos_file.py ├── test.py ├── test.txt ├── test_bug.py ├── test_change_dictpath.py ├── test_cut_for_search.py ├── test_cutall.py ├── test_file.py ├── test_lock.py ├── test_multithread.py ├── test_no_hmm.py ├── test_paddle.py ├── test_paddle_postag.py ├── test_pos.py ├── test_pos_file.py ├── test_pos_no_hmm.py ├── test_tokenize.py ├── test_tokenize_no_hmm.py ├── test_userdict.py ├── test_whoosh.py ├── test_whoosh_file.py ├── test_whoosh_file_read.py └── userdict.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/Changelog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/README.md -------------------------------------------------------------------------------- /extra_dict/dict.txt.big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/extra_dict/dict.txt.big -------------------------------------------------------------------------------- /extra_dict/dict.txt.small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/extra_dict/dict.txt.small -------------------------------------------------------------------------------- /extra_dict/idf.txt.big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/extra_dict/idf.txt.big -------------------------------------------------------------------------------- /extra_dict/stop_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/extra_dict/stop_words.txt -------------------------------------------------------------------------------- /jieba/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/__init__.py -------------------------------------------------------------------------------- /jieba/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/__main__.py -------------------------------------------------------------------------------- /jieba/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/_compat.py -------------------------------------------------------------------------------- /jieba/analyse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/analyse/__init__.py -------------------------------------------------------------------------------- /jieba/analyse/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/analyse/analyzer.py -------------------------------------------------------------------------------- /jieba/analyse/idf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/analyse/idf.txt -------------------------------------------------------------------------------- /jieba/analyse/textrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/analyse/textrank.py -------------------------------------------------------------------------------- /jieba/analyse/tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/analyse/tfidf.py -------------------------------------------------------------------------------- /jieba/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/dict.txt -------------------------------------------------------------------------------- /jieba/finalseg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/finalseg/__init__.py -------------------------------------------------------------------------------- /jieba/finalseg/prob_emit.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/finalseg/prob_emit.p -------------------------------------------------------------------------------- /jieba/finalseg/prob_emit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/finalseg/prob_emit.py -------------------------------------------------------------------------------- /jieba/finalseg/prob_start.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/finalseg/prob_start.p -------------------------------------------------------------------------------- /jieba/finalseg/prob_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/finalseg/prob_start.py -------------------------------------------------------------------------------- /jieba/finalseg/prob_trans.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/finalseg/prob_trans.p -------------------------------------------------------------------------------- /jieba/finalseg/prob_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/finalseg/prob_trans.py -------------------------------------------------------------------------------- /jieba/lac_small/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jieba/lac_small/creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/creator.py -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/crfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/crfw -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_0.b_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_0.b_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_0.w_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_0.w_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_1.b_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_1.b_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_1.w_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_1.w_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_2.b_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_2.b_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_2.w_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_2.w_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_3.b_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_3.b_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_3.w_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_3.w_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_4.b_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_4.b_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/fc_4.w_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/fc_4.w_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/gru_0.b_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/gru_0.b_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/gru_0.w_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/gru_0.w_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/gru_1.b_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/gru_1.b_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/gru_1.w_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/gru_1.w_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/gru_2.b_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/gru_2.b_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/gru_2.w_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/gru_2.w_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/gru_3.b_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/gru_3.b_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/gru_3.w_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/gru_3.w_0 -------------------------------------------------------------------------------- /jieba/lac_small/model_baseline/word_emb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/model_baseline/word_emb -------------------------------------------------------------------------------- /jieba/lac_small/nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/nets.py -------------------------------------------------------------------------------- /jieba/lac_small/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/predict.py -------------------------------------------------------------------------------- /jieba/lac_small/reader_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/reader_small.py -------------------------------------------------------------------------------- /jieba/lac_small/tag.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/tag.dic -------------------------------------------------------------------------------- /jieba/lac_small/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/utils.py -------------------------------------------------------------------------------- /jieba/lac_small/word.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/lac_small/word.dic -------------------------------------------------------------------------------- /jieba/posseg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/__init__.py -------------------------------------------------------------------------------- /jieba/posseg/char_state_tab.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/char_state_tab.p -------------------------------------------------------------------------------- /jieba/posseg/char_state_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/char_state_tab.py -------------------------------------------------------------------------------- /jieba/posseg/prob_emit.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/prob_emit.p -------------------------------------------------------------------------------- /jieba/posseg/prob_emit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/prob_emit.py -------------------------------------------------------------------------------- /jieba/posseg/prob_start.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/prob_start.p -------------------------------------------------------------------------------- /jieba/posseg/prob_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/prob_start.py -------------------------------------------------------------------------------- /jieba/posseg/prob_trans.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/prob_trans.p -------------------------------------------------------------------------------- /jieba/posseg/prob_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/prob_trans.py -------------------------------------------------------------------------------- /jieba/posseg/viterbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/jieba/posseg/viterbi.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/setup.py -------------------------------------------------------------------------------- /test/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/demo.py -------------------------------------------------------------------------------- /test/extract_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/extract_tags.py -------------------------------------------------------------------------------- /test/extract_tags_idfpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/extract_tags_idfpath.py -------------------------------------------------------------------------------- /test/extract_tags_stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/extract_tags_stop_words.py -------------------------------------------------------------------------------- /test/extract_tags_with_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/extract_tags_with_weight.py -------------------------------------------------------------------------------- /test/extract_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/extract_topic.py -------------------------------------------------------------------------------- /test/foobar.txt: -------------------------------------------------------------------------------- 1 | 好人 12 n -------------------------------------------------------------------------------- /test/jieba_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/jieba_test.py -------------------------------------------------------------------------------- /test/jiebacmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/jiebacmd.py -------------------------------------------------------------------------------- /test/lyric.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/lyric.txt -------------------------------------------------------------------------------- /test/parallel/extract_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/parallel/extract_tags.py -------------------------------------------------------------------------------- /test/parallel/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/parallel/test.py -------------------------------------------------------------------------------- /test/parallel/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/parallel/test2.py -------------------------------------------------------------------------------- /test/parallel/test_cut_for_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/parallel/test_cut_for_search.py -------------------------------------------------------------------------------- /test/parallel/test_disable_hmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/parallel/test_disable_hmm.py -------------------------------------------------------------------------------- /test/parallel/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/parallel/test_file.py -------------------------------------------------------------------------------- /test/parallel/test_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/parallel/test_pos.py -------------------------------------------------------------------------------- /test/parallel/test_pos_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/parallel/test_pos_file.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test.txt -------------------------------------------------------------------------------- /test/test_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_bug.py -------------------------------------------------------------------------------- /test/test_change_dictpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_change_dictpath.py -------------------------------------------------------------------------------- /test/test_cut_for_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_cut_for_search.py -------------------------------------------------------------------------------- /test/test_cutall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_cutall.py -------------------------------------------------------------------------------- /test/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_file.py -------------------------------------------------------------------------------- /test/test_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_lock.py -------------------------------------------------------------------------------- /test/test_multithread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_multithread.py -------------------------------------------------------------------------------- /test/test_no_hmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_no_hmm.py -------------------------------------------------------------------------------- /test/test_paddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_paddle.py -------------------------------------------------------------------------------- /test/test_paddle_postag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_paddle_postag.py -------------------------------------------------------------------------------- /test/test_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_pos.py -------------------------------------------------------------------------------- /test/test_pos_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_pos_file.py -------------------------------------------------------------------------------- /test/test_pos_no_hmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_pos_no_hmm.py -------------------------------------------------------------------------------- /test/test_tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_tokenize.py -------------------------------------------------------------------------------- /test/test_tokenize_no_hmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_tokenize_no_hmm.py -------------------------------------------------------------------------------- /test/test_userdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_userdict.py -------------------------------------------------------------------------------- /test/test_whoosh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_whoosh.py -------------------------------------------------------------------------------- /test/test_whoosh_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_whoosh_file.py -------------------------------------------------------------------------------- /test/test_whoosh_file_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/test_whoosh_file_read.py -------------------------------------------------------------------------------- /test/userdict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxsjy/jieba/HEAD/test/userdict.txt --------------------------------------------------------------------------------