AssertionError: Please update the *.json and *.py files of ChatGLM2-6B from HuggingFace.

chatglm2-6b + ChatGLM-Efficient-Tuning 微调运行出错

CUDA_VISIBLE_DEVICES=3 python src/train_sft.py \
--model_name_or_path ../chatglm2-6b \
--do_train \
--dataset alpaca_gpt4_zh \
--finetuning_type lora \
--output_dir path_to_sft_checkpoint \
--per_device_train_batch_size 4 \
--gradient_accumulation_steps 4 \
--lr_scheduler_type cosine \
--logging_steps 10 \
--save_steps 1000 \
--learning_rate 5e-5 \
--num_train_epochs 3.0 \
--fp16 \
--use_v2

AssertionError: Please update the *.json and *.py files of ChatGLM2-6B from HuggingFace.
AssertionError: Please update the *.json and *.py files of ChatGLM2-6B from HuggingFace._第1张图片

解决方法

这个因为配置文件没有更新
重新到huggginface中下载文件进行更新替换即可 最好.py .json的文件全部替换
https://huggingface.co/THUDM/chatglm2-6b/tree/main
AssertionError: Please update the *.json and *.py files of ChatGLM2-6B from HuggingFace._第2张图片

替换之后可以解决

你可能感兴趣的:(bug,深度学习,人工智能)