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.
时间: 2023-10-05 21:10:00 浏览: 803
planar_utils.py和testCases_cv2.py
这个错误是由于你使用了不正确的repo id格式导致的。在huggingface_hub中,repo id必须是'repo_name'或'namespace/repo_name'的形式。在你的代码中,使用了'../THUDM/chatglm-6b'这样的格式,不符合要求。
你需要使用正确的repo id格式,或者使用`repo_type`参数来指定repo类型,以便正确地加载和使用repo。
阅读全文