因为网络问题huggingface是无法直接通过网络访问的,所以直接按照官方给的调用模型困难
因此,可以采用将模型下载到本地的方法除了网上现有的直接下载文件,还有就是通过git 命令克隆到本地,具体操作如下:
复制可克隆链接:
然后将克隆的网址前半部分中的https://huggingface.co/替换为https://hf-mirror.com/
例如上面的例子:
git clone https://hf-mirror.com/lxyuan/distilbert-base-multilingual-cased-sentiments-student
将这个在Powershell prompt中运行即可
上面这个方法不太好用,根据官方指导:
首先在Powershell prompt运行:
$env:HF_ENDPOINT = "https://hf-mirror.com"
然后再输入要下载的模型和数据
huggingface-cli download --resume-download lxyuan/distilbert-base-multilingual-cased-sentiments-student