From b779f6e56ac5096204180073023406c1d1c18137 Mon Sep 17 00:00:00 2001 From: Gahow Wang Date: Wed, 17 Jun 2026 09:52:54 +0800 Subject: [PATCH] Add dash1 naive-completion driver for the ablation Co-Authored-By: Claude Opus 4.8 --- scripts/run_naive_d1.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 scripts/run_naive_d1.sh diff --git a/scripts/run_naive_d1.sh b/scripts/run_naive_d1.sh new file mode 100755 index 0000000..94a4902 --- /dev/null +++ b/scripts/run_naive_d1.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +# Complete the naive-OFF ablation arm to full budget on a fresh store (dash1). +set -u +export OPENAI_API_KEY=$(python3 -c 'import json,pathlib;print(json.load(open(pathlib.Path.home()/".codex/auth.json"))["OPENAI_API_KEY"])') +mkdir -p .aituner +rm -rf .aituner/abl-naive-d1 .aituner/ABL_NAIVE_D1_DONE +echo "=== naive OFF (dash1) start $(date -Is) ===" +PYTHONPATH=src python3 -m aituner.cli study tune \ + --spec configs/examples/dash0_qwen27b_ablation_naive_off.json \ + --store-root .aituner/abl-naive-d1 --max-trials 6 --skip-baseline > .aituner/abl-naive-d1.log 2>&1 +echo "=== naive OFF (dash1) done $(date -Is) ===" +touch .aituner/ABL_NAIVE_D1_DONE