├── .gitignore ├── README.md ├── check_data.ipynb ├── download.sh ├── merge.py └── src ├── generate_kg_dialogue.py ├── requirements.txt └── translate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBananaHuman/open-korean-instructions/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBananaHuman/open-korean-instructions/HEAD/README.md -------------------------------------------------------------------------------- /check_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBananaHuman/open-korean-instructions/HEAD/check_data.ipynb -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBananaHuman/open-korean-instructions/HEAD/download.sh -------------------------------------------------------------------------------- /merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBananaHuman/open-korean-instructions/HEAD/merge.py -------------------------------------------------------------------------------- /src/generate_kg_dialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBananaHuman/open-korean-instructions/HEAD/src/generate_kg_dialogue.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- 1 | datasets 2 | click 3 | google-cloud-translate 4 | openai -------------------------------------------------------------------------------- /src/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBananaHuman/open-korean-instructions/HEAD/src/translate.py --------------------------------------------------------------------------------