CausalGrok / code /scripts /plot_all.sh
nileshsarkar-ai's picture
Upload code/scripts
42c0d23 verified
#!/usr/bin/env bash
# scripts/plot_all.sh
# Regenerate paper figures + per-run training-curve plots from every
# experiments/runs/<run_id>/results/history.json on disk.
# Cross-run figures land in paper_figures/.
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
cd "${ROOT}"
source "${ROOT}/scripts/lib/env.sh"
resolve_python
"${PYTHON}" -m experiments.plot_results "$@"