Skip to content

Commit 397b1ca

Browse files
committed
sbatch
1 parent 9999753 commit 397b1ca

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

arch_data.sbatch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
#SBATCH --gres=gpu:v100-sxm2:1
1111

1212
source activate simclr1
13-
python pre_train.py --dataset-name cifar10 --arch resnet50 --comment "_cifar10_resnet50"
13+
python pre_train.py --dataset-name stl10 --arch resnet50 --comment "_stl10_resnet50"

batch1.sbatch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/bash
22

33
#SBATCH --nodes=1
4-
#SBATCH -c 8
4+
#SBATCH -c 1
55
#SBATCH --time=24:00:00
6-
#SBATCH --job-name=batch3
6+
#SBATCH --job-name=batch1
77
#SBATCH --partition=multigpu
8-
#SBATCH --mem=100Gb
8+
#SBATCH --mem=50Gb
99
#SBATCH --output=xepoch.%j.out
1010
#SBATCH --gres=gpu:v100-sxm2:1
1111

1212
source activate simclr1
13-
python pre_train.py -b 64
13+
python pre_train.py -b 64 --comment "_b64"

batch2.sbatch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#SBATCH --nodes=1
44
#SBATCH -c 8
55
#SBATCH --time=24:00:00
6-
#SBATCH --job-name=batch3
6+
#SBATCH --job-name=batch2
77
#SBATCH --partition=multigpu
88
#SBATCH --mem=100Gb
99
#SBATCH --output=xepoch.%j.out

temp1.sbatch

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
#!/bin/bash
22

33
#SBATCH --nodes=1
4-
#SBATCH -c 1
4+
#SBATCH -c 8
55
#SBATCH --time=24:00:00
6-
#SBATCH --job-name=temp4
6+
#SBATCH --job-name=temp1
77
#SBATCH --partition=multigpu
88
#SBATCH --mem=100Gb
99
#SBATCH --output=xepoch.%j.out
1010
#SBATCH --gres=gpu:v100-sxm2:1
1111

1212
source activate simclr1
13-
python pre_train.py --temperature 0.035 &
13+
python pre_train.py --temperature 0.035 --comment "_tmp35" &
1414
sleep 60
15-
python pre_train.py --temperature 0.105 &
15+
python pre_train.py --temperature 0.105 --comment "_tmp105" &
1616
sleep 60
17-
python pre_train.py --temperature 0.14
17+
python pre_train.py --temperature 0.14 --comment "_tmp14"

0 commit comments

Comments
 (0)