huggingface_hub.utils._validators.HFValidationError: Repo id must be in the form ‘repo_name’ or ‘namespace/repo_name’: ‘./THUDM/chatglm-6b’. Use repo_type argument if needed.
一,前言
复现chatGLM的时候报了这个错。
二,解决办法
1,已下载的模型路径不对
这个报错实际上是本地找不到模型导致的,可以检查一下看看。文章来源:https://www.toymoban.com/news/detail-457210.html
2,HuggingFace模型路径不对
model = AutoModel.from_pretrained(“./THUDM/chatglm-6b”, trust_remote_code=True).quantize(8).half().cuda()
比如这个这个,就用了相对地址应该用绝对地址
model = AutoModel.from_pretrained(“HuggingFace/THUDM/chatglm-6b”, trust_remote_code=True).quantize(8).half().cuda()文章来源地址https://www.toymoban.com/news/detail-457210.html
到了这里,关于huggingface_hub.utils._validators.HFValidationError: Repo id must be in the form ‘repo_name‘ or ‘nam的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!