Spaces:
Sleeping
Sleeping
Create setup.sh
Browse files
setup.sh
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
# Install Git LFS
|
4 |
+
apt-get update && apt-get install -y git-lfs
|
5 |
+
git lfs install
|
6 |
+
|
7 |
+
# Clone the V-Express repository
|
8 |
+
git clone https://github.com/tencent-ailab/V-Express
|
9 |
+
|
10 |
+
# Move into the V-Express directory
|
11 |
+
cd V-Express
|
12 |
+
|
13 |
+
# Clone the model files from Hugging Face
|
14 |
+
git clone https://huggingface.co/tk93/V-Express
|
15 |
+
|
16 |
+
# Move the model checkpoints to the correct directory
|
17 |
+
mv V-Express/model_ckpts model_ckpts
|