-
Notifications
You must be signed in to change notification settings - Fork 30
/
run.sh
executable file
·50 lines (38 loc) · 1.05 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
# run.sh
# --
# Small
time ./train.py \
--problem-path ./data/reddit/problem.h5 \
--aggregator-class mean
# >>
# Test sparse sampler for reddit
time python ./train.py \
--problem-path ./data/reddit/sparse-problem.h5 \
--aggregator-class mean \
--sampler-class sparse_uniform_neighbor_sampler
time python ./train.py \
--problem-path ./data/reddit/sparse-full-problem.h5 \
--aggregator-class mean \
--sampler-class sparse_uniform_neighbor_sampler
# <<
time ./train.py \
--problem-path ./data/cora/problem.h5 \
--aggregator-class mean
time ./train.py \
--problem-path ./data/pokec/problem.h5 \
--aggregator-class mean \
--prep-class node_embedding \
--epochs 3
# >>
# Sparse sampler for pokec
time ./train.py \
--problem-path ./data/pokec/problem.h5 \
--aggregator-class mean \
--prep-class node_embedding \
--sampler-class sparse_uniform_neighbor_sampler \
--epochs 3
# <<
python ./train.py \
--problem-path ./data/example_data/problem.h5 \
--aggregator-class mean