-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathrun_GINE_8L_500k.sh
More file actions
81 lines (58 loc) · 2.94 KB
/
run_GINE_8L_500k.sh
File metadata and controls
81 lines (58 loc) · 2.94 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# This script will be run in the root directory.
### 1. For GINE, 4 seeds ######################
## 1.1 VOCSuperpixels
config=configs/GINE/vocsuperpixels-GINE.yaml
# 1.1.1 GINE VOCSuperpixels slic 10
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-voc name_tag GINE-VOC-COOgraph-slic10 dataset.name edge_wt_only_coord dataset.slic_compactness 10 &
done
wait
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-voc name_tag GINE-VOC-COOFEATgraph-slic10 dataset.name edge_wt_coord_feat dataset.slic_compactness 10 &
done
wait
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-voc name_tag GINE-VOC-RBgraph-slic10 dataset.name edge_wt_region_boundary dataset.slic_compactness 10 &
done
wait
# 1.1.2 GINE VOCSuperpixels slic 30
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-voc name_tag GINE-VOC-COOgraph-slic30 dataset.name edge_wt_only_coord dataset.slic_compactness 30 &
done
wait
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-voc name_tag GINE-VOC-COOFEATgraph-slic30 dataset.name edge_wt_coord_feat dataset.slic_compactness 30 &
done
wait
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-voc name_tag GINE-VOC-RBgraph-slic30 dataset.name edge_wt_region_boundary dataset.slic_compactness 30 &
done
wait
## 1.2 COCOSuperpixels
config=configs/GINE/cocosuperpixels-GINE.yaml
# 1.2.1 GINE COCOSuperpixels slic 10
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-coco name_tag GINE-COCO-COOgraph-slic10 dataset.name edge_wt_only_coord dataset.slic_compactness 10 &
done
wait
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-coco name_tag GINE-COCO-COOFEATgraph-slic10 dataset.name edge_wt_coord_feat dataset.slic_compactness 10 &
done
wait
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-coco name_tag GINE-COCO-RBgraph-slic10 dataset.name edge_wt_region_boundary dataset.slic_compactness 10 &
done
wait
# 1.2.2 GINE COCOSuperpixels slic 30
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-coco name_tag GINE-COCO-COOgraph-slic30 dataset.name edge_wt_only_coord dataset.slic_compactness 30 &
done
wait
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-coco name_tag GINE-COCO-COOFEATgraph-slic30 dataset.name edge_wt_coord_feat dataset.slic_compactness 30 &
done
wait
for SEED in {0..3}; do
python main.py --cfg $config device cuda:$SEED seed $SEED wandb.project lrgb-coco name_tag GINE-COCO-RBgraph-slic30 dataset.name edge_wt_region_boundary dataset.slic_compactness 30 &
done
wait