File size: 245 Bytes
5a90f0c | 1 2 3 4 5 6 7 8 9 | #!/bin/bash
# One-shot: from this directory on the RunPod pod
# export HF_TOKEN=hf_...
# bash run.sh
set -euo pipefail
HERE="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
export WORKDIR="${HERE}"
bash "${HERE}/scripts/runpod_train_tmux.sh"
|