├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── assets └── demo.png ├── download.py ├── infer.py ├── requirements.txt ├── run.sh └── vocab ├── tokenizer_35000.model └── tokenizer_35000.vocab /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seujung/t5-summarization/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seujung/t5-summarization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seujung/t5-summarization/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seujung/t5-summarization/HEAD/app.py -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seujung/t5-summarization/HEAD/assets/demo.png -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seujung/t5-summarization/HEAD/download.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seujung/t5-summarization/HEAD/infer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch==1.6.0 2 | transformers==3.0.1 3 | streamlit==0.62.1 4 | gdown -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | streamlit run app.py --server.port 8501 2 | -------------------------------------------------------------------------------- /vocab/tokenizer_35000.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seujung/t5-summarization/HEAD/vocab/tokenizer_35000.model -------------------------------------------------------------------------------- /vocab/tokenizer_35000.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seujung/t5-summarization/HEAD/vocab/tokenizer_35000.vocab --------------------------------------------------------------------------------