赞
踩
在https://huggingface.co/join注册huggingface账号,登录账号后,在https://huggingface.co/settings/tokens创建token,注意需要将token的类型设置为WRITE。
安装git lfs
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
sudo apt-get install git-lfs
git lfs install
安装并登录huggingface-cli
pip install huggingface_hub
注意,这里需要输入你创建的token
创建repo
huggingface-cli repo create model_name
首先git clone到本地
git lfs install
git clone https://huggingface.co/your_username/model_name
然后将你的模型(checkpoint)保存到这个repo中。
再进行git repo的上传。
git add .
git commit -m "commit from $USER"
git push
其中,$USER指的是你配置的github的用户名或邮箱。关于如何配置,见https://blog.csdn.net/weixin_44022515/article/details/105967226。
之后,再打开huggingface你模型地址的网页,即可看到自己发布的模型。(我上传的网速好慢,才1.6MB/s)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。