-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrun.sh
32 lines (25 loc) · 989 Bytes
/
run.sh
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
26
27
28
29
30
31
#!/bin/bash
#SBATCH --job-name=pretain
#SBATCH --gres=gpu:1
#SBATCH --mem=96G
#SBATCH --cpus-per-task=16
#SBATCH --ntasks=1
#SBATCH --time=5-00:00:00
#SBATCH --nodelist=xxx
#SBATCH -p a6000
#SBATCH -N 1
#SBATCH --output=nki_keyword_seg_%A.out
#SBATCH --error=nki_keyword_seg_%A.err
nvidia-smi
echo "starting training"
#pretrain
##nohup python r'/run.py -c r'/pretrain_config.yaml --train
##nohup python r'/run.py -c r'/pretrain_config_test.yaml --test
#cls
#python r'/run.py -c r'/classification_config_1.yaml --train --test --train_pct 1 &
#python r'/run.py -c r'/classification_config_0.1.yaml --train --test --train_pct 0.1 &
#python r'/run.py -c r'/classification_config_0.01.yaml --train --test --train_pct 0.01
#seg
#python r'/run.py -c r'/segmentation_config_1.yaml --train --test --train_pct 1 &
#python r'/run.py -c r'/segmentation_config_0.1.yaml --train --test --train_pct 0.1 &
#python r'/run.py -c r'/segmentation_config_0.01.yaml --train --test --train_pct 0.01