summaryrefslogtreecommitdiff
path: root/scripts/run_ladder.sh
diff options
context:
space:
mode:
authoryurenh <blackhao0426@gmail.com>2026-08-31 18:26:01 -0500
committeryurenh <blackhao0426@gmail.com>2026-08-31 18:26:01 -0500
commit76652293b39fd97a2e7870e46ad3af63f9457cc1 (patch)
tree5cc28e87545847a3fae3b010c62232180269f5f7 /scripts/run_ladder.sh
parent98d05c2f52527d31cf1872f8eda19d1b6d91bc5b (diff)
add zbp_n64 train config; guard missing configs in the ladder runner
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01GkgLsACEF6CCP7EUfA5fZe
Diffstat (limited to 'scripts/run_ladder.sh')
-rwxr-xr-xscripts/run_ladder.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/run_ladder.sh b/scripts/run_ladder.sh
index 4d253f1..764632a 100755
--- a/scripts/run_ladder.sh
+++ b/scripts/run_ladder.sh
@@ -37,6 +37,8 @@ fi
for size in $SIZES; do
for arm in $ARMS; do
+ [ -f "configs/model/$size.yaml" ] || { echo "missing configs/model/$size.yaml"; exit 1; }
+ [ -f "configs/train/$arm.yaml" ] || { echo "missing configs/train/$arm.yaml"; exit 1; }
name="${size}_${arm}"
dir="$OUT/$name"
if [ -f "$dir/DONE" ]; then echo "== skip $name (done)"; continue; fi