├── .gitignore ├── ASExtractor.py ├── EnExtractor.py ├── EnExtractor.pyc ├── EnKeywordEvaluation.py ├── EnSentenceEvaluation.py ├── Extractor.py ├── Extractor.pyc ├── README.md ├── TextRank ├── EnKeywordExtraction.py ├── EnKeywordExtraction.pyc ├── EnSegmentation.py ├── EnSegmentation.pyc ├── EnSentenceExtraction.py ├── EnSentenceExtraction.pyc ├── KeywordExtraction.py ├── KeywordExtraction.pyc ├── Segmentation.py ├── Segmentation.pyc ├── SentenceExtraction.py ├── SentenceExtraction.pyc ├── __init__.py ├── __init__.pyc └── trainer │ ├── english.pickle │ ├── stopword_en.data │ └── stopword_zh.data ├── images ├── about.png ├── open.png └── save.png ├── log ├── result_rouge.txt ├── rouge.py └── text ├── 007.txt ├── 008.txt ├── 01.txt ├── 02.txt ├── 03.txt ├── 04.txt └── 05.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/.gitignore -------------------------------------------------------------------------------- /ASExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/ASExtractor.py -------------------------------------------------------------------------------- /EnExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/EnExtractor.py -------------------------------------------------------------------------------- /EnExtractor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/EnExtractor.pyc -------------------------------------------------------------------------------- /EnKeywordEvaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/EnKeywordEvaluation.py -------------------------------------------------------------------------------- /EnSentenceEvaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/EnSentenceEvaluation.py -------------------------------------------------------------------------------- /Extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/Extractor.py -------------------------------------------------------------------------------- /Extractor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/Extractor.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ASExtractor 2 | 3 | 中英文单文档自动摘要(TextRank) 4 | 5 | 提供不同相似度方法:Wordnet/Edit distance/Occurrence 6 | 7 | Wxpython 可视化界面 8 | 9 | DUC2002上验证 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /TextRank/EnKeywordExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/EnKeywordExtraction.py -------------------------------------------------------------------------------- /TextRank/EnKeywordExtraction.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/EnKeywordExtraction.pyc -------------------------------------------------------------------------------- /TextRank/EnSegmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/EnSegmentation.py -------------------------------------------------------------------------------- /TextRank/EnSegmentation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/EnSegmentation.pyc -------------------------------------------------------------------------------- /TextRank/EnSentenceExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/EnSentenceExtraction.py -------------------------------------------------------------------------------- /TextRank/EnSentenceExtraction.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/EnSentenceExtraction.pyc -------------------------------------------------------------------------------- /TextRank/KeywordExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/KeywordExtraction.py -------------------------------------------------------------------------------- /TextRank/KeywordExtraction.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/KeywordExtraction.pyc -------------------------------------------------------------------------------- /TextRank/Segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/Segmentation.py -------------------------------------------------------------------------------- /TextRank/Segmentation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/Segmentation.pyc -------------------------------------------------------------------------------- /TextRank/SentenceExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/SentenceExtraction.py -------------------------------------------------------------------------------- /TextRank/SentenceExtraction.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/SentenceExtraction.pyc -------------------------------------------------------------------------------- /TextRank/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/__init__.py -------------------------------------------------------------------------------- /TextRank/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/__init__.pyc -------------------------------------------------------------------------------- /TextRank/trainer/english.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/trainer/english.pickle -------------------------------------------------------------------------------- /TextRank/trainer/stopword_en.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/trainer/stopword_en.data -------------------------------------------------------------------------------- /TextRank/trainer/stopword_zh.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/TextRank/trainer/stopword_zh.data -------------------------------------------------------------------------------- /images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/images/about.png -------------------------------------------------------------------------------- /images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/images/open.png -------------------------------------------------------------------------------- /images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/images/save.png -------------------------------------------------------------------------------- /log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/log -------------------------------------------------------------------------------- /result_rouge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/result_rouge.txt -------------------------------------------------------------------------------- /rouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/rouge.py -------------------------------------------------------------------------------- /text/007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/text/007.txt -------------------------------------------------------------------------------- /text/008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/text/008.txt -------------------------------------------------------------------------------- /text/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/text/01.txt -------------------------------------------------------------------------------- /text/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/text/02.txt -------------------------------------------------------------------------------- /text/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/text/03.txt -------------------------------------------------------------------------------- /text/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/text/04.txt -------------------------------------------------------------------------------- /text/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbjin/ASExtractor/HEAD/text/05.txt --------------------------------------------------------------------------------