Spaces:
Running on Zero
Running on Zero
File size: 266 Bytes
9936912 | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/env bash
set -euo pipefail
if [[ -z "${VIRTUAL_ENV:-}" ]]; then
echo "Activate .venv first: source .venv/bin/activate" >&2
exit 1
fi
python scripts/preflight_training_v1.py sft
exec python -m mlx_lm.lora --config configs/lora_controlai_sft_v1.yaml
|