Back to blog

huggingface

huggingface

  • 解决访问慢的问题: 1.使用镜像站点:https://zhuanlan.zhihu.com/p/1924151803399893140 https://zhuanlan.zhihu.com/p/1954293183883215174
import os
os.environ["HF_ENDPOINT"] = "https://hf-mirror.com"

# 直接改环境变量,
export HF_ENDPOINT=https://hf-mirror.com

2.使用官网token认证:https://blog.csdn.net/suiyueruge1314/article/details/151399138 使用token登陆认证:hf auth login 或者直接配置到环境变量:export HF_TOKEN=<YOUR READ TOKEN>