Add sbs target, make scripts executable in CI, skip venv creation if exists

This commit is contained in:
Fam Zheng 2025-11-23 18:57:53 +00:00
parent aea7276ad4
commit 6c93bc3607
2 changed files with 4 additions and 1 deletions

View File

@ -99,4 +99,4 @@ ailab:
- export DATA_DIR=$HOME/emblem
# - make fetch-quick
- make sbs
- make train-quick
- make train

View File

@ -96,6 +96,9 @@ fetch-quick: FORCE
sbs: FORCE
cd emblem5 && ./ai/make-sbs.py --data-dir $(DATA_DIR)
train: FORCE
cd emblem5 && ./ai/train2.py --data-dir $(DATA_DIR) --epochs 30
train-quick: FORCE
cd emblem5 && ./ai/train2.py --data-dir $(DATA_DIR) --quick --epochs 2