├── .gitignore ├── README.md ├── check_data.ipynb ├── download.sh ├── merge.py ├── parse.py ├── push2hub.py ├── script └── 1124.sh ├── src ├── generate_kg_dialogue.py ├── glaive.py ├── glaive_filter.py ├── requirements.txt └── translate.py └── translation ├── pku_saferlhf.py └── translator.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/README.md -------------------------------------------------------------------------------- /check_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/check_data.ipynb -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/download.sh -------------------------------------------------------------------------------- /merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/merge.py -------------------------------------------------------------------------------- /parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/parse.py -------------------------------------------------------------------------------- /push2hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/push2hub.py -------------------------------------------------------------------------------- /script/1124.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/script/1124.sh -------------------------------------------------------------------------------- /src/generate_kg_dialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/src/generate_kg_dialogue.py -------------------------------------------------------------------------------- /src/glaive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/src/glaive.py -------------------------------------------------------------------------------- /src/glaive_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/src/glaive_filter.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- 1 | datasets 2 | click 3 | google-cloud-translate 4 | openai -------------------------------------------------------------------------------- /src/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/src/translate.py -------------------------------------------------------------------------------- /translation/pku_saferlhf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/translation/pku_saferlhf.py -------------------------------------------------------------------------------- /translation/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeegyuKim/open-korean-instructions/HEAD/translation/translator.py --------------------------------------------------------------------------------