├── .gitignore ├── AutoSummary.py ├── README.md ├── auto_summary.ipynb └── data ├── important_people_orgnazation.txt └── stopwords.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxu999/AutoSummarization/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoSummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxu999/AutoSummarization/HEAD/AutoSummary.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxu999/AutoSummarization/HEAD/README.md -------------------------------------------------------------------------------- /auto_summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxu999/AutoSummarization/HEAD/auto_summary.ipynb -------------------------------------------------------------------------------- /data/important_people_orgnazation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxu999/AutoSummarization/HEAD/data/important_people_orgnazation.txt -------------------------------------------------------------------------------- /data/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxu999/AutoSummarization/HEAD/data/stopwords.txt --------------------------------------------------------------------------------