win11从Huggingface下载模型文件
安装
管理员下安装
安装Huggingface CLI
python -m pip install huggingface-hub
下载
下载的样例是 ctheodoris/Geneformer
huggingface-cli download --resume-download ctheodoris/Geneformer --local-dir c:/Users/user/Desktop/test
下载的模型文件放入到test中。
国内镜像下载Huggingface
镜像:HF-Mirror - Huggingface 镜像站
Windows Powershell
$env:HF_ENDPOINT = "https://hf-mirror.com"
1 下载模型
huggingface-cli download --resume-download gpt2 --local-dir gpt2
2 下载数据
huggingface-cli download --repo-type dataset --resume-download wikitext --local-dir wikitext
--resume-download
参数,指的是从上一次下载的地方继续,一般推荐总是加上该参数,断了方便继续。