├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ └── proposal.md └── workflows │ └── main.yml ├── .gitignore ├── Makefile ├── README.md ├── docs └── decoded_examples.png ├── korquad_qg ├── __init__.py ├── config.py ├── dataset.py └── utils.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── scripts ├── run_evaluation.py ├── run_fine_tune.py ├── run_generate.py └── run_generate_article.py ├── setup.cfg ├── setup.py ├── tests └── test_sample.py └── tokenizer ├── merges.txt └── vocab.json /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/.github/ISSUE_TEMPLATE/proposal.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/README.md -------------------------------------------------------------------------------- /docs/decoded_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/docs/decoded_examples.png -------------------------------------------------------------------------------- /korquad_qg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/korquad_qg/__init__.py -------------------------------------------------------------------------------- /korquad_qg/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/korquad_qg/config.py -------------------------------------------------------------------------------- /korquad_qg/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/korquad_qg/dataset.py -------------------------------------------------------------------------------- /korquad_qg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/korquad_qg/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/run_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/scripts/run_evaluation.py -------------------------------------------------------------------------------- /scripts/run_fine_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/scripts/run_fine_tune.py -------------------------------------------------------------------------------- /scripts/run_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/scripts/run_generate.py -------------------------------------------------------------------------------- /scripts/run_generate_article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/scripts/run_generate_article.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_sample.py: -------------------------------------------------------------------------------- 1 | def test_add(): 2 | assert 1 + 2 == 3 3 | -------------------------------------------------------------------------------- /tokenizer/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/tokenizer/merges.txt -------------------------------------------------------------------------------- /tokenizer/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codertimo/KorQuAD-Question-Generation/HEAD/tokenizer/vocab.json --------------------------------------------------------------------------------