Cannot access gated repo for url https://huggingface.co/tiiuae/falcon-180B/resolve/main/tokenizer_config.json.
Repo model tiiuae/falcon-180B is gated. You must be authenticated to access it.
参考https://huggingface.co/docs/huggingface_hub/guides/download
先安装huggingface_hub,进行下载数据库,使用
from huggingface_hub import snapshot_download snapshot_download(repo_id="google/fleurs", repo_type="dataset")
类似You must be authenticated to access it.这样的问题需要这么解决,
from huggingface_hub import login
login()
获取tokens,hf-**********
输入后就可以开始下载了