赞
踩
本文通过python脚本的方式从huggingface镜像网站下载数据,下面是脚本的用法
from huggingface_hub import snapshot_download
model_id="Qwen/CodeQwen1.5-7B"
# repo_id 模型id
# local_dir 下载地址
# endpoint 镜像地址
# resume_download (中断后)继续下载
snapshot_download(repo_id=model_id, local_dir="F:\models\CodeQwe",
local_dir_use_symlinks=False, revision="main",
endpoint='https://hf-mirror.com',
resume_download=True)
pip install huggingface_hub
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。