赞
踩
huggingface官网链接:https://huggingface.co/
以stable-diffusion-inpant为例:模型链接为stable-diffusion-inpant
点击clone repository,可以发现提供了两种下载方式,方式一为HTTPS,代码如下,然而国内使用代理访问的时候采用这种方式会报错:Failed to connect to huggingface.co port 443 after 127293 ms: Couldn’t connect to server
因此最好使用方式二进行下载:
conda install git-lfs
如果直接输入:git clone git@hf.co:runwayml/stable-diffusion-inpainting,会报错,需要配置git ssh
ssh-keygen -t ed25519 -C "your.email@example.co"
返回过程需要设置密码,并输入两次,之后就会同时返回生成公钥和私钥的地址。
vi /.ssh/id_ed25519.pub #上图返回的公钥地址
ssh -T git@hf.co
git lfs install
git clone git@hf.co:runwayml/stable-diffusion-inpainting
git lfs pull
就可以顺利完成下载了。
参考:
huggingface如何使用ssh命令,下载数据集或者模型 比如:git clone git@hf.co:openchat/openchat_8192
huggingface教程 | 使用git-lfs下载huggingface上的模型文件
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。