├── README.md ├── Saved-Models └── .placeholder ├── dataloader.py ├── eval_model.py ├── finished_files ├── .placeholder └── vocabulary.bin ├── main.py ├── models.py └── preprocess.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbangCoder/Text-Summarization/HEAD/README.md -------------------------------------------------------------------------------- /Saved-Models/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbangCoder/Text-Summarization/HEAD/dataloader.py -------------------------------------------------------------------------------- /eval_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbangCoder/Text-Summarization/HEAD/eval_model.py -------------------------------------------------------------------------------- /finished_files/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finished_files/vocabulary.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbangCoder/Text-Summarization/HEAD/finished_files/vocabulary.bin -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbangCoder/Text-Summarization/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbangCoder/Text-Summarization/HEAD/models.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashbangCoder/Text-Summarization/HEAD/preprocess.py --------------------------------------------------------------------------------