PictureCleanUp / setup.sh
divimund95's picture
configure for HF spaces
ba3e3be
raw
history blame
545 Bytes
#!/bin/bash
# Check if lama directory exists
if [ ! -d "lama" ]; then
# Clone dependency repos
git clone https://github.com/advimman/lama.git
else
echo "lama directory already exists. Skipping clone."
fi
# Check if big-lama.zip or big-lama directory exists
if [ ! -f "big-lama.zip" ] && [ ! -d "big-lama" ]; then
# Download big-lama model
curl -LJO https://huggingface.co/smartywu/big-lama/resolve/main/big-lama.zip
unzip big-lama.zip
else
echo "big-lama model already exists. Skipping download and extraction."
fi