Spaces:
Paused
Paused
File size: 453 Bytes
3462380 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/usr/bin/env bash
set -eux # -e: exit on error, -u: error on undefined var, -x: print each command
echo "🏗️ postBuild starting at $(date)"
# (Re-install LFS just in case)
git lfs install
# Clone the model repo into a folder named “model”
git clone --depth 1 https://huggingface.co/CodCodingCode/llama-3.1-8b-clinical model
cd model
echo "🏗️ Running git lfs pull in $(pwd)"
git lfs pull
echo "✅ postBuild finished at $(date)" |