File size: 875 Bytes
944cdc2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #!/bin/bash
#SBATCH --job-name=process_data13 # Job name
#SBATCH --nodes=1 # Request 1 node
#SBATCH --ntasks-per-node=1
#SBATCH --cpus-per-task=16
#SBATCH --mem-per-cpu=8G
#SBATCH --time=24:00:00 # Job timeout
#SBATCH --output=process_test_data_20250512_check.log # Redirect stdout to a log file
#SBATCH --nodelist=gcpcpu-eu-1
cd /home/yuqian_fu/Projects/ego-exo4d-relation/correspondence/SegSwap
srun --nodes "$SLURM_NNODES" --ntasks-per-node 1 -- \
mkenv -f /home/yuqian_fu/environment.yml -- \
sh -c "
python data/process_data_new.py --takepath /work/yuqian_fu/Ego/egoexo4d_keystep/takes --annotationpath /work/yuqian_fu/Ego/New_annotations/annotations/relations_test.json --split_path /home/yuqian_fu/Projects/ego-exo4d-relation/correspondence/split.json --split test --outputpath /work/yuqian_fu/Ego/data_segswap_test_20250512
"
|