fsi-anomaly / run_sft.sh
FerrellSyntheticIntelligence's picture
backup all: 100 files (batch)
76b78ee verified
Raw
History Blame Contribute Delete
358 Bytes
#!/usr/bin/env bash
cd "$(dirname "$0")"
export PYTHONPATH="$PWD"
setsid ./.venv/bin/python train/train_sft.py \
--base ckpt/nlp --data data/sft_forensic.jsonl --tok data/tokenizer.json \
--ckpt ckpt/forensic --epochs 3 --batch 8 --seq 256 --lr 5e-5 \
--eval-every 200 --threads 8 \
> logs/sft_train.log 2>&1 < /dev/null &
echo "sft launched pid $!"