├── .gitignore ├── LICENSE ├── README.md ├── huggingface_datasets ├── aihub │ ├── aihub.py │ └── aihub_test.py ├── klue │ ├── klue.py │ └── klue_test.py ├── kor_corpora │ ├── kor_corpora.py │ └── kor_corpora_test.py ├── korquad │ ├── korquad.py │ └── korquad_test.py └── nikl │ ├── __init__.py │ ├── nikl.py │ └── nikl_test.py ├── requirements.txt └── tensorflow_datasets ├── aihub ├── __init__.py ├── aihub.py ├── aihub_test.py ├── checksums.tsv └── dummy_data │ └── TODO-add_fake_data_in_this_directory.txt ├── klue ├── __init__.py ├── checksums.tsv ├── dummy_data │ └── TODO-add_fake_data_in_this_directory.txt ├── klue.py └── klue_test.py ├── kor_corpora ├── __init__.py ├── checksums.tsv ├── dummy_data │ └── TODO-add_fake_data_in_this_directory.txt ├── kor_corpora.py └── kor_corpora_test.py ├── korquad ├── __init__.py ├── checksums.tsv ├── dummy_data │ └── TODO-add_fake_data_in_this_directory.txt ├── korquad.py └── korquad_test.py └── nikl ├── __init__.py ├── checksums.tsv ├── dummy_data └── TODO-add_fake_data_in_this_directory.txt ├── nikl.py └── nikl_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/README.md -------------------------------------------------------------------------------- /huggingface_datasets/aihub/aihub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/aihub/aihub.py -------------------------------------------------------------------------------- /huggingface_datasets/aihub/aihub_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/aihub/aihub_test.py -------------------------------------------------------------------------------- /huggingface_datasets/klue/klue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/klue/klue.py -------------------------------------------------------------------------------- /huggingface_datasets/klue/klue_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/klue/klue_test.py -------------------------------------------------------------------------------- /huggingface_datasets/kor_corpora/kor_corpora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/kor_corpora/kor_corpora.py -------------------------------------------------------------------------------- /huggingface_datasets/kor_corpora/kor_corpora_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/kor_corpora/kor_corpora_test.py -------------------------------------------------------------------------------- /huggingface_datasets/korquad/korquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/korquad/korquad.py -------------------------------------------------------------------------------- /huggingface_datasets/korquad/korquad_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/korquad/korquad_test.py -------------------------------------------------------------------------------- /huggingface_datasets/nikl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/nikl/__init__.py -------------------------------------------------------------------------------- /huggingface_datasets/nikl/nikl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/nikl/nikl.py -------------------------------------------------------------------------------- /huggingface_datasets/nikl/nikl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/huggingface_datasets/nikl/nikl_test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/requirements.txt -------------------------------------------------------------------------------- /tensorflow_datasets/aihub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/aihub/__init__.py -------------------------------------------------------------------------------- /tensorflow_datasets/aihub/aihub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/aihub/aihub.py -------------------------------------------------------------------------------- /tensorflow_datasets/aihub/aihub_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/aihub/aihub_test.py -------------------------------------------------------------------------------- /tensorflow_datasets/aihub/checksums.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/aihub/checksums.tsv -------------------------------------------------------------------------------- /tensorflow_datasets/aihub/dummy_data/TODO-add_fake_data_in_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow_datasets/klue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/klue/__init__.py -------------------------------------------------------------------------------- /tensorflow_datasets/klue/checksums.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/klue/checksums.tsv -------------------------------------------------------------------------------- /tensorflow_datasets/klue/dummy_data/TODO-add_fake_data_in_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow_datasets/klue/klue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/klue/klue.py -------------------------------------------------------------------------------- /tensorflow_datasets/klue/klue_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/klue/klue_test.py -------------------------------------------------------------------------------- /tensorflow_datasets/kor_corpora/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/kor_corpora/__init__.py -------------------------------------------------------------------------------- /tensorflow_datasets/kor_corpora/checksums.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/kor_corpora/checksums.tsv -------------------------------------------------------------------------------- /tensorflow_datasets/kor_corpora/dummy_data/TODO-add_fake_data_in_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow_datasets/kor_corpora/kor_corpora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/kor_corpora/kor_corpora.py -------------------------------------------------------------------------------- /tensorflow_datasets/kor_corpora/kor_corpora_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/kor_corpora/kor_corpora_test.py -------------------------------------------------------------------------------- /tensorflow_datasets/korquad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/korquad/__init__.py -------------------------------------------------------------------------------- /tensorflow_datasets/korquad/checksums.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/korquad/checksums.tsv -------------------------------------------------------------------------------- /tensorflow_datasets/korquad/dummy_data/TODO-add_fake_data_in_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow_datasets/korquad/korquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/korquad/korquad.py -------------------------------------------------------------------------------- /tensorflow_datasets/korquad/korquad_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/korquad/korquad_test.py -------------------------------------------------------------------------------- /tensorflow_datasets/nikl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/nikl/__init__.py -------------------------------------------------------------------------------- /tensorflow_datasets/nikl/checksums.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/nikl/checksums.tsv -------------------------------------------------------------------------------- /tensorflow_datasets/nikl/dummy_data/TODO-add_fake_data_in_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow_datasets/nikl/nikl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/nikl/nikl.py -------------------------------------------------------------------------------- /tensorflow_datasets/nikl/nikl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIRC-KETI/Korean-Copora/HEAD/tensorflow_datasets/nikl/nikl_test.py --------------------------------------------------------------------------------