mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-22 16:49:06 +00:00
20 lines
365 B
Bash
Executable file
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"
|