File size: 550 Bytes
75f0bc0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH --cpus-per-task=1
#SBATCH --time=24:00:00
#SBATCH --job-name=res
#SBATCH --account=torch_pr_51_tandon_advanced
export SSL_CERT_DIR=/etc/ssl/certs
singularity exec --nv \
--overlay /scratch/ds5725/environments/annot.ext3:ro \
/share/apps/images/cuda12.1.1-cudnn8.9.0-devel-ubuntu22.04.2.sif \
/bin/bash -lc '
source /ext3/env.sh
conda activate annot
python gpt.py \
--image_dir /scratch/ds5725/OOPS/images \
--output /scratch/ds5725/OOPS/gpt5.txt
' |