Spaces:
Sleeping
Sleeping
File size: 409 Bytes
dfaaad7 77fbff7 dfaaad7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash
# Install Git LFS
apt-get update && apt-get install -y git-lfs
git lfs install
# Clone the V-Express repository
git clone https://github.com/cantonalex/V-Express
# Move into the V-Express directory
cd V-Express
# Clone the model files from Hugging Face
git clone https://huggingface.co/tk93/V-Express
# Move the model checkpoints to the correct directory
mv V-Express/model_ckpts model_ckpts
|