From d4b0a2b2d87430c7f8f1aad74ec53eb0eac3ba73 Mon Sep 17 00:00:00 2001 From: rtmalikian Date: Wed, 17 Jun 2026 21:31:20 -0700 Subject: [PATCH] docs: replace obsolete --experiment-dir with --result-dir in SLURM guide The --experiment-dir parameter was removed from train_evo2 in PR #740. Replace the last remaining reference in the SLURM documentation with the current --result-dir parameter, using the existing RESULTS_PATH variable for consistency. Fixes #1128 --- docs/docs/main/getting-started/using-slurm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/main/getting-started/using-slurm.md b/docs/docs/main/getting-started/using-slurm.md index 9e55d105fd..a7ffb1f363 100644 --- a/docs/docs/main/getting-started/using-slurm.md +++ b/docs/docs/main/getting-started/using-slurm.md @@ -87,7 +87,7 @@ cd /workspace/bionemo/recipes/evo2_megatron \ --hidden-dropout $HDO \ --limit-val-batches=20 \ --val-check-interval=${VAL_CHECK} \ - --experiment-dir=/workspace/bionemo/model/checkpoints/${EXPERIMENT_NAME} \ + --result-dir=${RESULTS_PATH} \ --seq-length=${SEQ_LEN} \ --tensor-parallel-size=${TP_SIZE} \ --context-parallel-size=${CP_SIZE} \