- #!/usr/bin/env bash
- set -euo pipefail
- ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
- cd "$ROOT_DIR"
- PYTHON_BIN="${PYTHON_BIN:-/opt/miniforge3/envs/xnet_mamba/bin/python}"
- OUTPUTS_DIR="${OUTPUTS_DIR:-outputs/experiments/optimized}"
- RESULTS_DIR="${RESULTS_DIR:-results/optimized}"
- "$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"
|