From 451431379363d760ad2b69058f883f33e36225ad Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Sun, 17 May 2026 00:09:43 +0200 Subject: [PATCH] =?UTF-8?q?infra(argo):=20use=20decimal=20seed=20value=20?= =?UTF-8?q?=E2=80=94=20clap=20u64=20parser=20rejects=20hex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit alpha_train --seed is clap-typed as u64, and clap's default u64 parser only accepts decimal digits. Previous default "0x4242" hit "invalid digit found in string" at startup. Replace with decimal equivalent 16962 (= 0x4242) in both the submission script default and the workflow template default. Long-term: could add a custom clap value_parser that accepts hex/dec/oct prefixes, but for now decimal-only matches the foxhunt convention in other CLIs (alpha_baseline, etc.). Co-Authored-By: Claude Opus 4.7 --- infra/k8s/argo/alpha-perception-template.yaml | 2 +- scripts/argo-alpha-perception.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/k8s/argo/alpha-perception-template.yaml b/infra/k8s/argo/alpha-perception-template.yaml index 010cf945c..1580eaad0 100644 --- a/infra/k8s/argo/alpha-perception-template.yaml +++ b/infra/k8s/argo/alpha-perception-template.yaml @@ -61,7 +61,7 @@ spec: - name: n-val-seqs value: "1000" - name: seed - value: "0x4242" + value: "16962" volumes: - name: git-ssh-key diff --git a/scripts/argo-alpha-perception.sh b/scripts/argo-alpha-perception.sh index 489dcc1b5..ab3c46ea4 100755 --- a/scripts/argo-alpha-perception.sh +++ b/scripts/argo-alpha-perception.sh @@ -26,7 +26,7 @@ LR_CFC=3e-3 LR_MAMBA2=1e-3 N_TRAIN_SEQS=8000 N_VAL_SEQS=1000 -SEED=0x4242 +SEED=16962 WATCH=false usage() {