OSError: chatglm-6b is not a local folder and is not a valid model identifier listed on 'https://huggingface.co/models' If this is a private repository, make sure to pass a token having permission to this repo with `use_auth_token` or log in with `huggingface-cli login` and pass `use_auth_token=True`.
时间: 2023-06-25 07:06:54 浏览: 764
cuda报错 OSError: libcudart.so.10.0: cannot open shared object file: No such file
这个错误提示是因为你正在尝试使用一个本地文件夹或者一个无效的模型标识符作为 chatglm-6b 模型的路径。这可能是因为你没有正确下载或安装该模型。
你可以尝试使用以下命令从Hugging Face下载该模型:
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("microsoft/DialoGPT-medium")
model = AutoModelForCausalLM.from_pretrained("microsoft/DialoGPT-medium")
```
这将下载并加载 Microsoft 的 DialoGPT-medium 模型,你可以在其中进行对话生成任务。
阅读全文