ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] > [home](https://huggingface.co/) > [home 镜像](https://hf-mirror.com/) ## huggingface Hugging Face 是一个开源社区,致力于自然语言处理(NLP)和人工智能(AI)技术的发展和推广。 而 Transformers 是 Hugging Face 开发的一个库,专门用于自然语言处理中的模型和工具。 ## 设置镜像 ### 方式一:huggingface-cli ``` pip install -U huggingface_hub export HF_ENDPOINT=https://hf-mirror.com ``` 使用 ``` // 下载模型 huggingface-cli download --resume-download gpt2 --local-dir gpt2 // 下载数据集 huggingface-cli download --repo-type dataset --resume-download wikitext --local-dir wikitext ``` ## 方式二:非侵入式 ``` export HF_ENDPOINT=https://hf-mirror.com python your_script.py ```