├── README.md ├── T5.py ├── data └── README.md ├── dataset.py ├── generate.py ├── output ├── README.md ├── output_after_process.txt └── output_after_processed.txt ├── post-processing.ipynb └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoneun/T5-Question-Generation/HEAD/README.md -------------------------------------------------------------------------------- /T5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoneun/T5-Question-Generation/HEAD/T5.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoneun/T5-Question-Generation/HEAD/data/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoneun/T5-Question-Generation/HEAD/dataset.py -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoneun/T5-Question-Generation/HEAD/generate.py -------------------------------------------------------------------------------- /output/README.md: -------------------------------------------------------------------------------- 1 | ## My result for training 2 | -------------------------------------------------------------------------------- /output/output_after_process.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoneun/T5-Question-Generation/HEAD/output/output_after_process.txt -------------------------------------------------------------------------------- /output/output_after_processed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoneun/T5-Question-Generation/HEAD/output/output_after_processed.txt -------------------------------------------------------------------------------- /post-processing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoneun/T5-Question-Generation/HEAD/post-processing.ipynb -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoneun/T5-Question-Generation/HEAD/train.py --------------------------------------------------------------------------------