1、背景:
想下载huggingface上的模型,有些文件又大有多余,怎么下载呢?
2、方法
1.git clone 全部下载,但是没有进度,不知道什么时候还要等多久
3、终极方案huggingface_hub,
在python用代码下载,方便快捷又可以看进度
安装文章来源:https://uudwc.com/A/BvPL4
pip install huggingface_hub
from huggingface_hub import snapshot_download
snapshot_download(repo_id="openai/clip-vit-large-patch14", ignore_patterns=["*.h5", "*.ot", "*.msgpack","*.safetensors"],local_dir='./temp')
#排除不下载的文件的ignore_patterns,下载路径local_dir 如果指导会下载到.cacah文件夹切记指定目录
from huggingface_hub import snapshot_download
snapshot_download(repo_id="stabilityai/stable-diffusion-xl-refiner-1.0",ignore_patterns=["sd_xl_refiner_1.0.safetensors","sd_xl_refiner_1.0_0.9vae.safetensors"],local_dir="./down_temp")
文章来源地址https://uudwc.com/A/BvPL4