Spaces:
Running
Running
Delete launch_vace.py
Browse files- launch_vace.py +0 -21
launch_vace.py
DELETED
|
@@ -1,21 +0,0 @@
|
|
| 1 |
-
import subprocess
|
| 2 |
-
from huggingface_hub import snapshot_download
|
| 3 |
-
|
| 4 |
-
snapshot_download(
|
| 5 |
-
repo_id = "Wan-AI/Wan2.1-VACE-1.3B",
|
| 6 |
-
local_dir = "models/Wan2.1-VACE-1.3B"
|
| 7 |
-
)
|
| 8 |
-
|
| 9 |
-
def launch_vace():
|
| 10 |
-
command = [
|
| 11 |
-
"python",
|
| 12 |
-
"gradio/vace.py"
|
| 13 |
-
]
|
| 14 |
-
|
| 15 |
-
try:
|
| 16 |
-
subprocess.run(command, check=True)
|
| 17 |
-
except subprocess.CalledProcessError as e:
|
| 18 |
-
print(f"An error occurred: {e}")
|
| 19 |
-
|
| 20 |
-
if __name__ == "__main__":
|
| 21 |
-
launch_vace()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|