File size: 384 Bytes
42c0d23 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/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 "$@"
|