작심삼일

[huggingface 에러] RepositoryNotFoundError: 401 Client Error. 본문

정리/잡 에러들

[huggingface 에러] RepositoryNotFoundError: 401 Client Error.

yun_s 2023. 10. 18. 19:33
728x90
반응형

에러

huggingface_hub.utils._errors.RepositoryNotFoundError: 401 Client Error.

Repository Not Found for url: https://huggingface.co/xxx/xxx/model.pth.
Please make sure you specified the correct `repo_id` and `repo_type`.
If you are trying to access a private or gated repo, make sure you are authenticated.
Invalid username or password.

해결 방법

1. 레포 주소를 올바르게 썼는지 확인해본다.

2. private레포라면 huggingface 로그인을 진행하면 된다.

# 2번
from huggingface_hub.hf_api import HfFolder
HfFolder.save_token('MY_HUGGINGFACE_TOKEN_HERE')
728x90
반응형
Comments