Spaces:
Running on Zero
Running on Zero
File size: 263 Bytes
41ff959 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")/.."
python - <<'PY'
from huggingface_hub import snapshot_download
snapshot_download(
repo_id="PLUS-WAVE/InfiniSplat",
allow_patterns="checkpoints/*.ckpt",
local_dir=".",
)
PY
|