ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

hugging face下载dataset时候出现You must be authenticated to access it.问题解决

2026/8/13 6:26:01 拓冰建站 浏览量
hugging face下载dataset时候出现You must be authenticated to access it.问题解决

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-**********

 

输入后就可以开始下载了