├── LICENSE ├── README.md ├── data ├── tra │ └── tra_0.pkl ├── tst │ └── tst_0.pkl ├── val │ └── val_0.pkl └── vocab ├── data_utils.py ├── predict_model.py ├── prepro.py ├── textsum_model.py ├── train_model.py └── train_w2v.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/README.md -------------------------------------------------------------------------------- /data/tra/tra_0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/data/tra/tra_0.pkl -------------------------------------------------------------------------------- /data/tst/tst_0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/data/tst/tst_0.pkl -------------------------------------------------------------------------------- /data/val/val_0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/data/val/val_0.pkl -------------------------------------------------------------------------------- /data/vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/data/vocab -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/data_utils.py -------------------------------------------------------------------------------- /predict_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/predict_model.py -------------------------------------------------------------------------------- /prepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/prepro.py -------------------------------------------------------------------------------- /textsum_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/textsum_model.py -------------------------------------------------------------------------------- /train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/train_model.py -------------------------------------------------------------------------------- /train_w2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrian9631/TextSumma/HEAD/train_w2v.py --------------------------------------------------------------------------------