SplatAtlas / scripts /run_all_postprocessing.sh
KCBtheone's picture
Upload SplatAtlas benchmark pipeline code
23e73f9 verified
Raw
History Blame Contribute Delete
449 Bytes
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
echo "πŸš€ [1/4] Extracting Dynamics..."
python scripts/extract_dynamics.py
echo "πŸ”¬ [2/4] Computing Offline Physics..."
python scripts/compute_offline_physics.py
echo "🌌 [3/4] Mapping Functional Space..."
python scripts/functional_clustering.py
echo "πŸ“Š [4/4] Building Grand Leaderboard..."
python scripts/build_grand_table.py
echo "βœ… All post-processing pipelines completed successfully."