-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathshage.sh
More file actions
16 lines (16 loc) · 692 Bytes
/
shage.sh
File metadata and controls
16 lines (16 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#SBATCH --job-name=age
#SBATCH -p gpu
#SBATCH --gres=gpu:1
#SBATCH -t 50-00:00:00
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH --cpus-per-task=4
#SBATCH -a 0 ## 0, 0-5, ...
#SBATCH -o age.regnety_32.v%a.out
#SBATCH -e age.regnety_32.v%a.err
module load anaconda3 ## the module name could be slightly different in your system
conda activate <name_of_your_env>
python src/main_age.py --seed 98 --model regnety_32 --imshape 390_wx --batch 16 --epoch 17 --lrate 3e-5 --loss_type MAE --pheno age --version $SLURM_ARRAY_TASK_ID --subsample 60 --r_degree 33
################# dm_nfnet_f2 eca_nfnet_l2 regnety_32 xcit_m_384 volo_d2_384 regnet_x_32gf
conda deactivate