-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcba_appnp.yaml
81 lines (69 loc) · 1.12 KB
/
cba_appnp.yaml
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
seml:
name: trn_appnp
executable: exp_train.py
project_root_dir: ../../
output_dir: log/training
slurm:
experiments_per_job: 1
sbatch_options:
gres: gpu:1 # num GPUs
mem: 10G # memory
cpus-per-task: 4 # num cores
time: 0-00:30 # max time, D-HH:MM
fixed:
data_params:
graph_model: CBA
m: 2
train_params:
inductive: True
model_params:
label: APPNP
model: APPNP
n_hidden: 64
K: 10
other_params:
sacred_metrics: False
grid:
data_params:
K:
type: choice
options:
- 0.1
- 0.5
- 1
- 1.5
- 2
- 3
- 4
- 5
model_params:
dropout:
type: choice
options:
- 0.0
- 0.3
- 0.5
alpha:
type: choice
options:
- 0.05
- 0.1
- 0.2
train_params:
lr:
type: choice
options:
- 0.1
- 0.01
- 0.001
weight_decay:
type: choice
options:
- 0.01
- 0.001
- 0.0001
seed:
type: range
min: 0
max: 10
step: 1