本文主要是介绍ModuleNotFoundError: No module named ‘transformers_modules.chatglm-6b-v1‘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ModuleNotFoundError: No module named 'transformers_modules.chatglm-6b-v1'
欢迎来到英杰社区https://bbs.csdn.net/topics/617804998
欢迎来到我的主页,我是博主英杰,211科班出身,就职于医疗科技公司,热衷分享知识,武汉城市开发者社区主理人
擅长.net、C++、python开发, 如果遇到技术问题,即可私聊博主,博主一对一为您解答
修改代码、商务合作:
Yan--yingjie
Yan--yingjie
Yan--yingjie
【报错】
把最新的 v1.1 ChatGLM版本pull到本地后,用AutoModel.from_pretrained读取的时候报了ModuleNotFoundError: No module named 'transformers_modules.chatglm-6b-v1'这个错。
预期行为
没有回应
重现步骤
从转换器导入 AutoTokenizer,AutoModel
tokenizer = AutoTokenizer.from_pretrained(“models/chatglm-6b-v1.1”, trust_remote_code=True)
model = AutoModel.from_pretrained(“models/chatglm-6b-v1.1”, trust_remote_code=True).half().cuda()
环境
- OS:
- Python:
- Transformers:
- PyTorch:
- CUDA Support (`python -c "import torch; print(torch.cuda.is_available())"`) :
报错原因与解决办法:
本地路径里有类似“chatglm-6b-v1.1”这样的?本地路径的文件夹名称里不能有“.”
【常见模块错误】
如果出现模块错误
进入控制台输入:建议使用国内镜像源pip install 模块名称 -i https://mirrors.aliyun.com/pypi/simple我大致罗列了以下几种国内镜像源:清华大学
https://pypi.tuna.tsinghua.edu.cn/simple阿里云
https://mirrors.aliyun.com/pypi/simple/豆瓣
https://pypi.douban.com/simple/百度云
https://mirror.baidu.com/pypi/simple/中科大
https://pypi.mirrors.ustc.edu.cn/simple/华为云
https://mirrors.huaweicloud.com/repository/pypi/simple/腾讯云
https://mirrors.cloud.tencent.com/pypi/simple/
这篇关于ModuleNotFoundError: No module named ‘transformers_modules.chatglm-6b-v1‘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!