├── .gitignore ├── README.md ├── assets ├── dataset.png └── ner_dataset.png ├── notebook ├── .ipynb_checkpoints │ ├── train_qwen2-checkpoint.ipynb │ └── train_qwen2_ner-checkpoint.ipynb ├── train_glm4.ipynb ├── train_glm4_ner.ipynb ├── train_qwen2.ipynb └── train_qwen2_ner.ipynb ├── predict_glm4.py ├── predict_qwen2.py ├── qwen2_vl ├── csv2json.py ├── data2csv.py ├── predict_qwen2_vl.py ├── requirements.txt └── train_qwen2_vl.py ├── requirements.txt ├── train_glm4.py ├── train_glm4_ner.py ├── train_qwen2.py └── train_qwen2_ner.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/README.md -------------------------------------------------------------------------------- /assets/dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/assets/dataset.png -------------------------------------------------------------------------------- /assets/ner_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/assets/ner_dataset.png -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/train_qwen2-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/notebook/.ipynb_checkpoints/train_qwen2-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/train_qwen2_ner-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/notebook/.ipynb_checkpoints/train_qwen2_ner-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/train_glm4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/notebook/train_glm4.ipynb -------------------------------------------------------------------------------- /notebook/train_glm4_ner.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/notebook/train_glm4_ner.ipynb -------------------------------------------------------------------------------- /notebook/train_qwen2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/notebook/train_qwen2.ipynb -------------------------------------------------------------------------------- /notebook/train_qwen2_ner.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/notebook/train_qwen2_ner.ipynb -------------------------------------------------------------------------------- /predict_glm4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/predict_glm4.py -------------------------------------------------------------------------------- /predict_qwen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/predict_qwen2.py -------------------------------------------------------------------------------- /qwen2_vl/csv2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/qwen2_vl/csv2json.py -------------------------------------------------------------------------------- /qwen2_vl/data2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/qwen2_vl/data2csv.py -------------------------------------------------------------------------------- /qwen2_vl/predict_qwen2_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/qwen2_vl/predict_qwen2_vl.py -------------------------------------------------------------------------------- /qwen2_vl/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/qwen2_vl/requirements.txt -------------------------------------------------------------------------------- /qwen2_vl/train_qwen2_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/qwen2_vl/train_qwen2_vl.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_glm4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/train_glm4.py -------------------------------------------------------------------------------- /train_glm4_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/train_glm4_ner.py -------------------------------------------------------------------------------- /train_qwen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/train_qwen2.py -------------------------------------------------------------------------------- /train_qwen2_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeyi-Lin/LLM-Finetune/HEAD/train_qwen2_ner.py --------------------------------------------------------------------------------