#!/usr/bin/env bash # Validation-only screen for amortized calibration query budgets. # Usage: query_budget_validation_sweep.sh " ..." [seeds] # Example: query_budget_validation_sweep.sh 5 "sdil:16:4 sdil:1:4" 0 set -eu cd "$(dirname "$0")/.." GPU="${1:?GPU index required}" SPECS="${2:?space-separated mode:k:every specs required}" SEEDS="${3:-0}" PYTHON="${PYTHON:-/home/yurenh2/miniconda3/envs/ep_pascal/bin/python3}" for seed in $SEEDS; do for spec in $SPECS; do IFS=: read -r mode ndirs every <