├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── data ├── chStopWordsSimple.txt ├── raw │ ├── A-光明.txt │ └── A-利娜.txt ├── result │ ├── A-光明_word_result.txt │ ├── A-利娜_word_result.txt │ ├── theme_result.txt │ └── word_result.txt ├── segmented │ ├── A-光明.txt │ └── A-利娜.txt ├── sentence_symbol.txt └── test │ ├── A-guangming.txt │ └── A-光明-test.txt ├── requirements.txt ├── theme.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/config.py -------------------------------------------------------------------------------- /data/chStopWordsSimple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/chStopWordsSimple.txt -------------------------------------------------------------------------------- /data/raw/A-光明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/raw/A-光明.txt -------------------------------------------------------------------------------- /data/raw/A-利娜.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/raw/A-利娜.txt -------------------------------------------------------------------------------- /data/result/A-光明_word_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/result/A-光明_word_result.txt -------------------------------------------------------------------------------- /data/result/A-利娜_word_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/result/A-利娜_word_result.txt -------------------------------------------------------------------------------- /data/result/theme_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/result/theme_result.txt -------------------------------------------------------------------------------- /data/result/word_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/result/word_result.txt -------------------------------------------------------------------------------- /data/segmented/A-光明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/segmented/A-光明.txt -------------------------------------------------------------------------------- /data/segmented/A-利娜.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/segmented/A-利娜.txt -------------------------------------------------------------------------------- /data/sentence_symbol.txt: -------------------------------------------------------------------------------- 1 | ? 2 | ? 3 | 。 4 | . 5 | ! 6 | ! 7 | , 8 | , 9 | : 10 | : -------------------------------------------------------------------------------- /data/test/A-guangming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/test/A-guangming.txt -------------------------------------------------------------------------------- /data/test/A-光明-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/data/test/A-光明-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jieba 2 | gensim -------------------------------------------------------------------------------- /theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/theme.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shibing624/text-feature/HEAD/train.py --------------------------------------------------------------------------------