赞
踩
全量微调的部署:
- cd ../composite_demo
- MODEL_PATH="path to finetuned model checkpoint" TOKENIZER_PATH="path/chatglm3-6b" streamlit run main.py
报错:
OSError: ../finetune_chatmodel_demo/output/……/checkpoint-500 does not appear to have a file named configuration_chatglm.py. Checkout 'https://huggingface.co/../finetune_chatmodel_demo/output/……/checkpoint-500/None' for available files.
原因:
MODEL路径下缺失configuration_chatglm.py。
解决办法:
微调后的output里没有对应的py文件,这些文件在chatglm3-6b里,把对应的py文件从chatglm3-6b里复制到你的/checkpoint-500路径下即可。
包括:configuration_chatglm.py、modeling_chatglm.py、quantization.py。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。