分类 "经验累积" 下的文章

apt update && apt install openssl ca-certificates

wget "http://" --no-check-certificate

apt -y install aria2

这份指南涵盖了Aria2最常用的命令行选项,可根据实际需求组合使用这些参数以达到最佳下载效果。

阅读全文

核心:

#全自动 ./hdf.sh xxx/xxxx

hfd.zip

export HF_ENDPOINT=https://hf-mirror.com

或者

find /home/aistudio/work/ComfyUI/custom_nodes/ -type f -exec sed -i 's/huggingface.co/hf-mirror.com/g' {} +


# 下载模型
huggingface-cli download --resume-download --local-dir-use-symlinks False bigscience/bloom-560m --local-dir bloom-560m
# 下载数据集
huggingface-cli download --resume-download --repo-type dataset lavita/medical-qa-shared-task-v1-toy

下载需要登录的模型(Gated Model)
请添加 --token hf_ 参数,其中 hf_ 是 access token,请在 Hugging Face官网这里 获取。示例:

huggingface-cli download --token hf_*** --resume-download --local-dir-use-symlinks False meta-llama/Llama-2-7b

阅读全文