├── LICENSE ├── README.md ├── configs ├── lora.yaml └── my ├── data ├── dev.json ├── oaast_sft_zh.json ├── self_cognition.json └── self_cognition │ ├── dev.json │ └── train.json ├── dataset2glm3.py ├── finetune_hf.py ├── inference_hf.py └── model_export_hf..py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/README.md -------------------------------------------------------------------------------- /configs/lora.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/configs/lora.yaml -------------------------------------------------------------------------------- /configs/my: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/data/dev.json -------------------------------------------------------------------------------- /data/oaast_sft_zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/data/oaast_sft_zh.json -------------------------------------------------------------------------------- /data/self_cognition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/data/self_cognition.json -------------------------------------------------------------------------------- /data/self_cognition/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/data/self_cognition/dev.json -------------------------------------------------------------------------------- /data/self_cognition/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/data/self_cognition/train.json -------------------------------------------------------------------------------- /dataset2glm3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/dataset2glm3.py -------------------------------------------------------------------------------- /finetune_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/finetune_hf.py -------------------------------------------------------------------------------- /inference_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/inference_hf.py -------------------------------------------------------------------------------- /model_export_hf..py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/We-IOT/chatglm3_6b_finetune/HEAD/model_export_hf..py --------------------------------------------------------------------------------