Spaces:
Runtime error
Runtime error
File size: 1,743 Bytes
3e8f8ea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
#!/bin/bash
# Set models and datasets to download
models=(
"nlpconnect/vit-gpt2-image-captioning"
"lllyasviel/ControlNet"
"lllyasviel/sd-controlnet-canny"
"lllyasviel/sd-controlnet-depth"
"lllyasviel/sd-controlnet-hed"
"lllyasviel/sd-controlnet-mlsd"
"lllyasviel/sd-controlnet-openpose"
"lllyasviel/sd-controlnet-scribble"
"lllyasviel/sd-controlnet-seg"
"runwayml/stable-diffusion-v1-5"
"damo-vilab/text-to-video-ms-1.7b"
"microsoft/speecht5_asr"
"JorisCos/DCCRNet_Libri1Mix_enhsingle_16k"
"espnet/kan-bayashi_ljspeech_vits"
"facebook/detr-resnet-101"
"microsoft/speecht5_hifigan"
"microsoft/speecht5_vc"
"openai/whisper-base"
"Intel/dpt-large"
"facebook/detr-resnet-50-panoptic"
"facebook/detr-resnet-50"
"google/owlvit-base-patch32"
"impira/layoutlm-document-qa"
"ydshieh/vit-gpt2-coco-en"
"dandelin/vilt-b32-finetuned-vqa"
"lambdalabs/sd-image-variations-diffusers"
"facebook/maskformer-swin-base-coco"
"Intel/dpt-hybrid-midas"
)
datasets=("Matthijs/cmu-arctic-xvectors")
# Set the current directory
CURRENT_DIR=$(pwd)
# Download models
for model in "${models[@]}"; do
echo "----- Downloading from https://huggingface.co/${model} -----"
if [ -d "${model}" ]; then
(cd "${model}" && git pull && git lfs pull)
else
git clone --recurse-submodules "https://huggingface.co/${model}" "${model}"
fi
done
# Download datasets
for dataset in "${datasets[@]}"; do
echo "----- Downloading from https://huggingface.co/datasets/${dataset} -----"
if [ -d "${dataset}" ]; then
(cd "${dataset}" && git pull && git lfs pull)
else
git clone --recurse-submodules "https://huggingface.co/datasets/${dataset}" "${dataset}"
fi
done |