mirror of
https://github.com/SakanaAI/doc-to-lora.git
synced 2026-07-23 17:01:04 +02:00
9 lines
222 B
Bash
Executable file
9 lines
222 B
Bash
Executable file
job_id=$(sbatch --parsable batch.sh "$@")
|
|
while ! scontrol show job "$job_id" | grep -q "JobState=RUNNING"; do
|
|
echo "Waiting for job $job_id to start..."
|
|
sleep 5
|
|
done
|
|
|
|
echo "Job $job_id started"
|
|
|
|
sattach $job_id.0
|