├── .gitignore ├── README.md ├── cmp.py ├── corpus └── 1000001.txt ├── dataClean.py ├── dict_file ├── cilin.txt ├── dict.txt.big ├── part_of_speech.txt ├── stop_words.txt └── user_dict.txt ├── dijkstra.py ├── excel_handle.py ├── fileHandle.py ├── main.py ├── semanticsCount.py ├── src ├── __init__.py ├── dir_handle.py ├── excel_handle.py ├── file_handle.py ├── html_handle.py ├── scrapy_handle.py └── seg_handle.py ├── statisticsCount.py ├── test.py ├── textPreprocessing.py ├── textRank.py └── tfidf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/README.md -------------------------------------------------------------------------------- /cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/cmp.py -------------------------------------------------------------------------------- /corpus/1000001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/corpus/1000001.txt -------------------------------------------------------------------------------- /dataClean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/dataClean.py -------------------------------------------------------------------------------- /dict_file/cilin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/dict_file/cilin.txt -------------------------------------------------------------------------------- /dict_file/dict.txt.big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/dict_file/dict.txt.big -------------------------------------------------------------------------------- /dict_file/part_of_speech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/dict_file/part_of_speech.txt -------------------------------------------------------------------------------- /dict_file/stop_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/dict_file/stop_words.txt -------------------------------------------------------------------------------- /dict_file/user_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/dict_file/user_dict.txt -------------------------------------------------------------------------------- /dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/dijkstra.py -------------------------------------------------------------------------------- /excel_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/excel_handle.py -------------------------------------------------------------------------------- /fileHandle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/fileHandle.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/main.py -------------------------------------------------------------------------------- /semanticsCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/semanticsCount.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dir_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/src/dir_handle.py -------------------------------------------------------------------------------- /src/excel_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/src/excel_handle.py -------------------------------------------------------------------------------- /src/file_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/src/file_handle.py -------------------------------------------------------------------------------- /src/html_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/src/html_handle.py -------------------------------------------------------------------------------- /src/scrapy_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/src/scrapy_handle.py -------------------------------------------------------------------------------- /src/seg_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/src/seg_handle.py -------------------------------------------------------------------------------- /statisticsCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/statisticsCount.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/test.py -------------------------------------------------------------------------------- /textPreprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/textPreprocessing.py -------------------------------------------------------------------------------- /textRank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/textRank.py -------------------------------------------------------------------------------- /tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helencoder/SKE/HEAD/tfidf.py --------------------------------------------------------------------------------