├── .gitignore ├── README.md ├── app.py ├── data ├── huanhuan.json └── huanhuan_xtuner.json ├── images ├── Extract-Dialogue.png ├── chat嬛嬛.png ├── compass_support.svg ├── huanhuan_chat.png ├── huanhuan_img.png ├── license.svg ├── logo.png ├── modelscope.png ├── modelscope_logo.png ├── openxlab.png ├── openxlab_model.jpg └── tech_route.svg ├── requirements.txt ├── results ├── huanhuan_lianghua.csv ├── huanhuan_ori.csv ├── internlm2_kv.csv └── internlm2_ori.csv ├── start.py └── train ├── internlm2-chat-lora.ipynb ├── internlm2_1_8b_full_oasst1_e3_huanhuan.py └── internlm2_chat_7b_qlora_oasst1_e3_copy.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/app.py -------------------------------------------------------------------------------- /data/huanhuan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/data/huanhuan.json -------------------------------------------------------------------------------- /data/huanhuan_xtuner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/data/huanhuan_xtuner.json -------------------------------------------------------------------------------- /images/Extract-Dialogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/Extract-Dialogue.png -------------------------------------------------------------------------------- /images/chat嬛嬛.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/chat嬛嬛.png -------------------------------------------------------------------------------- /images/compass_support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/compass_support.svg -------------------------------------------------------------------------------- /images/huanhuan_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/huanhuan_chat.png -------------------------------------------------------------------------------- /images/huanhuan_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/huanhuan_img.png -------------------------------------------------------------------------------- /images/license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/license.svg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/modelscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/modelscope.png -------------------------------------------------------------------------------- /images/modelscope_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/modelscope_logo.png -------------------------------------------------------------------------------- /images/openxlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/openxlab.png -------------------------------------------------------------------------------- /images/openxlab_model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/openxlab_model.jpg -------------------------------------------------------------------------------- /images/tech_route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/images/tech_route.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/huanhuan_lianghua.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/results/huanhuan_lianghua.csv -------------------------------------------------------------------------------- /results/huanhuan_ori.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/results/huanhuan_ori.csv -------------------------------------------------------------------------------- /results/internlm2_kv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/results/internlm2_kv.csv -------------------------------------------------------------------------------- /results/internlm2_ori.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/results/internlm2_ori.csv -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/start.py -------------------------------------------------------------------------------- /train/internlm2-chat-lora.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/train/internlm2-chat-lora.ipynb -------------------------------------------------------------------------------- /train/internlm2_1_8b_full_oasst1_e3_huanhuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/train/internlm2_1_8b_full_oasst1_e3_huanhuan.py -------------------------------------------------------------------------------- /train/internlm2_chat_7b_qlora_oasst1_e3_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KMnO4-zx/xlab-huanhuan/HEAD/train/internlm2_chat_7b_qlora_oasst1_e3_copy.py --------------------------------------------------------------------------------