forked from snap-stanford/GraphGym
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.yaml
More file actions
40 lines (40 loc) · 728 Bytes
/
example.yaml
File metadata and controls
40 lines (40 loc) · 728 Bytes
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
# The recommended basic settings for GNN
out_dir: results
dataset:
format: PyG
name: Cora
task: node
task_type: classification
transductive: True
split: [0.8, 0.2]
augment_feature: []
augment_feature_dims: [0]
augment_feature_repr: position
augment_label: ''
augment_label_dims: 0
transform: none
train:
batch_size: 32
eval_period: 20
ckpt_period: 100
model:
type: gnn
loss_fun: cross_entropy
edge_decoding: dot
graph_pooling: add
gnn:
layers_pre_mp: 1
layers_mp: 2
layers_post_mp: 1
dim_inner: 256
layer_type: generalconv
stage_type: stack
batchnorm: True
act: prelu
dropout: 0.0
agg: add
normalize_adj: False
optim:
optimizer: adam
base_lr: 0.01
max_epoch: 400