From 0056be88ecbe93bd9a91e1cde26ea7866f550406 Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Mon, 25 May 2026 09:25:48 +0200 Subject: [PATCH] fix(argo): skip fxcache for alpha-rl (reads MBP-10 directly) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit alpha_rl_train reads MBP-10 data with its own predecoded cache — it never uses the fxcache pipeline. Skip the 15-minute feature extraction step entirely for model=alpha-rl by depending only on ensure-binary + gpu-warmup. Co-Authored-By: Claude Opus 4.7 --- scripts/argo-train.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/argo-train.sh b/scripts/argo-train.sh index 2164a29a2..0f2208001 100755 --- a/scripts/argo-train.sh +++ b/scripts/argo-train.sh @@ -233,11 +233,17 @@ build_matrix_tasks() { # produces a YAML parse error in the rendered template. local indent=" " local s + local deps + if [ "$MODEL" = "alpha-rl" ]; then + deps="[ensure-binary, gpu-warmup]" + else + deps="[ensure-fxcache, gpu-warmup]" + fi for ((s=0; s