#!/usr/bin/env bash set -euo pipefail ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" cd "$ROOT_DIR" PYTHON_BIN="${PYTHON_BIN:-python}" OUTPUTS_DIR="${OUTPUTS_DIR:-outputs}" RESULTS_DIR="${RESULTS_DIR:-results}" "$PYTHON_BIN" tools/summarize_results.py --outputs-dir "$OUTPUTS_DIR" --results-dir "$RESULTS_DIR" echo "[done] results written to:" echo " - ${RESULTS_DIR}/experiment_summary.csv" echo " - ${RESULTS_DIR}/experiment_summary.md"