scripts/lambda-bootstrap.sh: also fix eval invocation paths
The eval suite at the end of the bootstrap was using ../artifacts and ../data/* paths because they were originally invoked from inside repo/. Now that we no longer cd into repo, drop the ../ prefix. Same root cause as the previous commit. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
ed7e3db035
commit
3413a7c405
1 changed files with 5 additions and 5 deletions
|
|
@ -206,12 +206,12 @@ fi
|
|||
|
||||
echo
|
||||
echo "=== eval suite ==="
|
||||
(cd repo && python -m training.eval_.run \
|
||||
(python -m training.eval_.run \
|
||||
--validation data/processed/validation_v1.parquet \
|
||||
--artifacts ../artifacts \
|
||||
--summary ../data/processed/features_window_v1.parquet \
|
||||
--tensors ../data/processed/tensor_window_v1 \
|
||||
--reports-dir ../reports/eval) || echo "eval reported errors — see logs/eval.log"
|
||||
--artifacts artifacts \
|
||||
--summary data/processed/features_window_v1.parquet \
|
||||
--tensors data/processed/tensor_window_v1 \
|
||||
--reports-dir reports/eval) || echo "eval reported errors — see logs/eval.log"
|
||||
|
||||
# ─────────────────────────────────────────────────────────────────────
|
||||
# 4. Stamp + summarize
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue