当前位置:   article > 正文

快速从huggingface下载模型的方法_下载huggingface的模型到本地python代码

下载huggingface的模型到本地python代码

说明

本文通过python脚本的方式从huggingface镜像网站下载数据,下面是脚本的用法

安装python环境

核心代码

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)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

安装依赖包

pip install huggingface_hub
  • 1

运行代码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/880611
推荐阅读
相关标签
  

闽ICP备14008679号