-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_test.sh
35 lines (32 loc) · 1.83 KB
/
run_test.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
#!/bin/bash
# ** GT-D2G-var **
# Reproduce NYT Result
# `with` syntax is introduced by sacred(https://github.com/IDSIA/sacred)
# python test_GT_D2G.py with 'config_path="checkpoints/GT-D2G-var/nyt_seed27.best.config"' \
# 'checkpoint_path="checkpoints/GT-D2G-var/nyt_seed27.best.ckpt"'
# Reproduce AMiner Result
# python test_GT_D2G.py with 'config_path="checkpoints/GT-D2G-var/dblp_seed27.best.config"' \
# 'checkpoint_path="checkpoints/GT-D2G-var/dblp_seed27.best.ckpt"'
# # Reproduce Yelp Result
# python test_GT_D2G.py with 'config_path="checkpoints/GT-D2G-var/yelp_seed27.best.config"' \
# 'checkpoint_path="checkpoints/GT-D2G-var/yelp_seed27.best.ckpt"'
# ** GT-D2G-neigh **
# Reproduce NYT Result
# python test_GT_D2G.py with 'config_path="checkpoints/GT-D2G-neigh/nyt_seed27.best.config"' \
# 'checkpoint_path="checkpoints/GT-D2G-neigh/nyt_seed27.best.ckpt"'
# # Reproduce AMiner Result
# python test_GT_D2G.py with 'config_path="checkpoints/GT-D2G-neigh/dblp_seed27.best.config"' \
# 'checkpoint_path="checkpoints/GT-D2G-neigh/dblp_seed27.best.ckpt"'
# # Reproduce Yelp Result
# python test_GT_D2G.py with 'config_path="checkpoints/GT-D2G-neigh/yelp_seed27.best.config"' \
# 'checkpoint_path="checkpoints/GT-D2G-neigh/yelp_seed27.best.ckpt"'
# ** GT-D2G-path **
# Reproduce NYT Result
# python test_GT_D2G.py with 'config_path="checkpoints/GT-D2G-path/nyt_seed27.best.config"' \
# 'checkpoint_path="checkpoints/GT-D2G-path/nyt_seed27.best.ckpt"'
# # Reproduce AMiner Result
# python test_GT_D2G.py with 'config_path="checkpoints/GT-D2G-path/dblp_seed27.best.config"' \
# 'checkpoint_path="checkpoints/GT-D2G-path/dblp_seed27.best.ckpt"'
# Reproduce Yelp Result
python test_GT_D2G.py with 'config_path="checkpoints/GT-D2G-path/yelp_seed27.best.config"' \
'checkpoint_path="checkpoints/GT-D2G-path/yelp_seed27.best.ckpt"'