├── .gitignore ├── MODEL_LICENSE.md ├── README.md ├── README_EN.md ├── finetune ├── data │ └── coig_10k.json ├── ds_config.json └── finetune.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepLangAI/LingoWhale-8B/HEAD/.gitignore -------------------------------------------------------------------------------- /MODEL_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepLangAI/LingoWhale-8B/HEAD/MODEL_LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepLangAI/LingoWhale-8B/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepLangAI/LingoWhale-8B/HEAD/README_EN.md -------------------------------------------------------------------------------- /finetune/data/coig_10k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepLangAI/LingoWhale-8B/HEAD/finetune/data/coig_10k.json -------------------------------------------------------------------------------- /finetune/ds_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepLangAI/LingoWhale-8B/HEAD/finetune/ds_config.json -------------------------------------------------------------------------------- /finetune/finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepLangAI/LingoWhale-8B/HEAD/finetune/finetune.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepLangAI/LingoWhale-8B/HEAD/requirements.txt --------------------------------------------------------------------------------