diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-08-08 10:27:28 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-08-08 10:27:28 -0500 |
| commit | 1305db8fecfe04f6ba37f31a7c6a9e2a4b8edcda (patch) | |
| tree | 98fed0e4cf9e12e506dd7dfc1b3cea1f2083193c | |
| parent | a3baf15507c67202814d5ccb4c06e1af027971c5 (diff) | |
exp: parameterize full EP confirmation seeds
| -rwxr-xr-x | experiments/rain_ep_centered_r3.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/experiments/rain_ep_centered_r3.sh b/experiments/rain_ep_centered_r3.sh index be44649..bc23089 100755 --- a/experiments/rain_ep_centered_r3.sh +++ b/experiments/rain_ep_centered_r3.sh @@ -5,7 +5,7 @@ ROOT=/home/yurenh2/sdil AUTHOR=/scratch/yurenh2/energy-based-learning PYTHON=/scratch/yurenh2/venvs/burstccn/bin/python PROFILE="$ROOT/results/physical_bias/p0_state_dependence.json" -OUT="$ROOT/results/ep_bias/centered_r3" +OUT="${RAIN_EP_OUT:-$ROOT/results/ep_bias/centered_r3}" mkdir -p "$OUT" cd "$AUTHOR" @@ -30,7 +30,7 @@ run_cell() { --output "$OUT/$tag.json" > "$OUT/$tag.log" 2>&1 } -seeds=(1988 1989) +read -r -a seeds <<< "${RAIN_EP_SEEDS:-1988 1989}" methods=(clean raw constant innovation) tags=(clean raw intercept sdil) gpu=0 |
