目录 前言一、配置git全局代理【可选】1.配置http或socks5代理2.取消代理配置 二、下载步骤问题 前言 想要下载huggingface的模型,却发现只能一个个文件下载非常
想要下载huggingface的模型,却发现只能一个个文件下载非常不方便,又或者官方提供的api不好用或者下载不下来,这里提供一个通过git clone一次性下载整个数据集/模型下来的高效方法。
如果不使用代理clone非常慢,可以选择先配置git全局代理。在bash或者cmd中输入如下命令:
git config --global http.proxy 'http://127.0.0.1:此处换成http端口号'git config --global https.proxy 'https://127.0.0.1:此处换成https端口号'
git config --global http.proxy 'socks5://127.0.0.1:此处换成socks5端口号'git config --global https.proxy 'socks5://127.0.0.1:此处换成socks5端口号'
或在用户目录下的.gitconfig
文件末尾加上:
[http] proxy = socks5://127.0.0.1:此处换成socks5端口号proxy = http://127.0.0.1:此处换成http端口号 [https] proxy = socks5://127.0.0.1:此处换成socks5端口号proxy = https://127.0.0.1:此处换成http端口号
git config --global --unset http.proxygit config --global --unset https.proxy
或删掉用户目录下.gitconfig
文件里[http]
和[https]
后面的内容。
1. 进入到你要下载的数据集(Dataset card)或模型(Model card)的Files
目录下,然后从地址栏中复制url,如下图所示:
2. bash或cmd中输入如下命令:
git clone '第1步中复制的url,将末尾的/tree/main换成.git'
如果所需要下载的文件较大,则需要使用git-lfs下载(安装及使用方法):
git lfs clone '第1步中复制的url,将末尾的/tree/main换成.git'
注意: 如果需要切换分支,同样只需要使用git
的-b
参数下载对应的分支即可。
3. 等待clone完成
如果clone中断,恢复clone可以尝试如下命令:
git checkout branchname -- .
在第一次clone的时候遇到了git LFS错误,不确定原因,顺便记录一下解决过程,错误如下:
error: external filter 'git-lfs filter-process' failedfatal: xxxxxxxxx: smudge filter lfs failedwarning: Clone succeeded, but checkout failed.
解决方法: Kerwen Blog
来源地址:https://blog.csdn.net/weixin_44034841/article/details/131862553
--结束END--
本文标题: 通过git clone批量下载huggingface模型和数据集
本文链接: https://lsjlt.com/news/414112.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0