diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-22 20:32:19 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-22 20:32:19 -0500 |
| commit | 32122d026176ed199271aea243ccb0eef78eb30f (patch) | |
| tree | aaa78f5439625d7f39663a38275eacc447d85eb4 /experiments/bci_td_confirmation.sh | |
| parent | 9ca51a97119efc90bc2a0b6b65624dc87689e088 (diff) | |
protocol: freeze oral B recovery confirmation
Diffstat (limited to 'experiments/bci_td_confirmation.sh')
| -rwxr-xr-x | experiments/bci_td_confirmation.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/experiments/bci_td_confirmation.sh b/experiments/bci_td_confirmation.sh new file mode 100755 index 0000000..aab8c8c --- /dev/null +++ b/experiments/bci_td_confirmation.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash +# Frozen R1-gated oral-B confirmation: 6 task seeds x 5 model seeds. +set -eu + +cd "$(dirname "$0")/.." +PY=/home/yurenh2/miniconda3/envs/ep_pascal/bin/python3 + +for task_seed in 10 11 12 13 14 15; do + for model_seed in 0 1 2 3 4; do + OMP_NUM_THREADS=1 MKL_NUM_THREADS=1 "$PY" \ + experiments/bci_td_confirmation.py \ + --task-seed "$task_seed" --model-seed "$model_seed" + done +done + +"$PY" experiments/analyze_bci_td_confirmation.py |
