reasoning-gym/training/qwen-math/scripts/set/prepare.sh
Zafir Stojanovski 0cda6b1205
qwen math training code (#435)
* qwen math training code

* pre-commit
2025-05-16 13:19:19 +02:00

20 lines
365 B
Bash
Executable file

#!/bin/bash
MAMBA_ENV="tina"
eval "$(mamba shell hook --shell bash)" && mamba activate "${MAMBA_ENV}"
echo "START TIME: $(date)"
echo "PYTHON ENV: $(which python)"
source "./scripts/set/set_vars.sh"
PY_SCRIPT="./scripts/set/run_download_model.py"
echo ""
echo "Running script: ${PY_SCRIPT}"
echo ""
python "${PY_SCRIPT}"
echo "END TIME: $(date)"
echo "DONE"